mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-29 21:00:54 +00:00
This fixes `cargo check --workspace` and rust-analyzer. Also see <https://github.com/launchbadge/sqlx/discussions/1956>.
13 lines
303 B
TOML
13 lines
303 B
TOML
[package]
|
|
name = "sqlx-example-sqlite-todos"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
workspace = "../../../"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
futures = "0.3"
|
|
sqlx = { path = "../../../", features = ["sqlite", "runtime-tokio-native-tls"] }
|
|
structopt = "0.3"
|
|
tokio = { version = "1.20.0", features = ["macros"]}
|