| 1 |
[package] |
| 2 |
name = "goingson-db-sqlite" |
| 3 |
version.workspace = true |
| 4 |
edition.workspace = true |
| 5 |
|
| 6 |
[dependencies] |
| 7 |
goingson-core = { workspace = true, features = ["sqlx-sqlite"] } |
| 8 |
sqlx = { workspace = true, features = ["sqlite", "uuid", "chrono"] } |
| 9 |
chrono = { workspace = true } |
| 10 |
uuid = { workspace = true } |
| 11 |
async-trait = { workspace = true } |
| 12 |
argon2 = { workspace = true, features = ["std"] } |
| 13 |
serde_json = { workspace = true } |
| 14 |
tracing = { workspace = true } |
| 15 |
tokio = { workspace = true, features = ["macros"] } |
| 16 |
|
| 17 |
[dev-dependencies] |
| 18 |
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } |
| 19 |
|