Cargo.toml
1[package]
2name = "sqlez"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9[dependencies]
10anyhow = { version = "1.0.38", features = ["backtrace"] }
11indoc = "1.0.7"
12libsqlite3-sys = { version = "0.24", features = ["bundled"] }
13smol = "1.2"
14thread_local = "1.1.4"
15lazy_static = "1.4"
16parking_lot = "0.11.1"
17futures = "0.3"