mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-11-03 15:02:50 +00:00
Differences to Postgres version: - Minor changes to schema - Add TODO: "RETURNING" isn't supported, so retrieve ID separately
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.5.0", features = [ "attributes" ] }
|
|
futures = "0.3"
|
|
paw = "1.0"
|
|
sqlx = { path = "../../../", features = ["sqlite"] }
|
|
structopt = { version = "0.3", features = ["paw"] }
|