File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ window = ["rusqlite/window"]
45
45
crossbeam-channel = { version = " 0.5" }
46
46
futures-channel = { version = " 0.3" }
47
47
futures-util = { version = " 0.3" }
48
- rusqlite = { version = " 0.35 .0" }
48
+ rusqlite = { version = " 0.36 .0" }
49
49
50
50
[dev-dependencies ]
51
51
async-std = { version = " 1.12.0" }
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ impl Client {
172
172
fn create_conn ( mut builder : ClientBuilder ) -> Result < Connection , Error > {
173
173
let path = builder. path . take ( ) . unwrap_or_else ( || ":memory:" . into ( ) ) ;
174
174
let conn = if let Some ( vfs) = builder. vfs . take ( ) {
175
- Connection :: open_with_flags_and_vfs ( path, builder. flags , & vfs) ?
175
+ Connection :: open_with_flags_and_vfs ( path, builder. flags , vfs. as_str ( ) ) ?
176
176
} else {
177
177
Connection :: open_with_flags ( path, builder. flags ) ?
178
178
} ;
You can’t perform that action at this time.
0 commit comments