mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 05:11:13 +00:00
Co-authored-by: Josh Toft <joshtoft@gmail.com> Co-authored-by: Philip A Reimer <antreimer@gmail.com>
14 lines
331 B
TOML
14 lines
331 B
TOML
[package]
|
|
name = "sqlx-example-sqlite-todos"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
workspace = "../../../"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
async-std = { version = "1.8.0", features = [ "attributes" ] }
|
|
futures = "0.3"
|
|
paw = "1.0"
|
|
sqlx = { path = "../../../", features = ["sqlite"] }
|
|
structopt = { version = "0.3", features = ["paw"] }
|