diff options
author | Teddy Wing | 2022-03-31 21:49:15 +0200 |
---|---|---|
committer | Teddy Wing | 2022-03-31 21:49:15 +0200 |
commit | 7b1b42b07fdb78e026de08619c7c99de70cfeb04 (patch) | |
tree | 98dc5e9de06d84e5ee2b0a582d8f4a43caf29842 | |
parent | 896044f9daaf84d6442a5179fddb9d43911752e7 (diff) | |
download | yaqlite-7b1b42b07fdb78e026de08619c7c99de70cfeb04.tar.bz2 |
Cargo.toml: Add a note to remove the "modern_sqlite" rusqlite feature
I'm not currently using that feature. I had added it for debugging.
-rw-r--r-- | Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6,6 +6,7 @@ edition = "2021" [dependencies] anyhow = "1.0.56" exitcode = "1.1.2" +# TODO: Remove modern_sqlite feature rusqlite = { version = "0.27.0", features = ["modern_sqlite"] } thiserror = "1.0.30" yaml-rust = { package = "yaml-rust-davvid", version = "0.5.1" } |