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"]
4545crossbeam-channel = { version = " 0.5" }
4646futures-channel = { version = " 0.3" }
4747futures-util = { version = " 0.3" }
48- rusqlite = { version = " 0.35 .0" }
48+ rusqlite = { version = " 0.36 .0" }
4949
5050[dev-dependencies ]
5151async-std = { version = " 1.12.0" }
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ impl Client {
172172 fn create_conn ( mut builder : ClientBuilder ) -> Result < Connection , Error > {
173173 let path = builder. path . take ( ) . unwrap_or_else ( || ":memory:" . into ( ) ) ;
174174 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 ( ) ) ?
176176 } else {
177177 Connection :: open_with_flags ( path, builder. flags ) ?
178178 } ;
You can’t perform that action at this time.
0 commit comments