diff options
author | Teddy Wing | 2022-03-18 19:57:47 +0100 |
---|---|---|
committer | Teddy Wing | 2022-03-18 19:57:47 +0100 |
commit | 065f2e630f366fe38920885c63cf97a7d3218c21 (patch) | |
tree | 9e8de1f9d7f132ad6dda2b357c38981d47505311 /Cargo.toml | |
parent | cc960575a321700b9b8981eb1d5b542fd2207fc2 (diff) | |
download | yaqlite-065f2e630f366fe38920885c63cf97a7d3218c21.tar.bz2 |
select(): Debug the parameterized SQL query
Add the `modern_sqlite` feature in order to use the `expanded_sql()`
method. This shows us the SQL query with parameters expanded.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ version = "0.0.1" edition = "2021" [dependencies] -rusqlite = "0.27.0" +rusqlite = { version = "0.27.0", features = ["modern_sqlite"] } thiserror = "1.0.30" yaml-rust = "0.4.5" |