crane/examples/sqlx/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
282 B
TOML
Raw Normal View History

2023-11-29 04:08:21 +03:00
[package]
name = "sqlx-example-sqlite-todos"
version = "0.1.0"
edition = "2018"
[dependencies]
anyhow = "1.0"
futures = "0.3"
sqlx = { version = "0.8", features = ["sqlite", "runtime-tokio-native-tls"] }
2023-11-29 04:08:21 +03:00
structopt = "0.3"
tokio = { version = "1.20.0", features = ["rt", "macros"]}