Cargo.toml

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