14 lines
386 B
TOML
14 lines
386 B
TOML
[package]
|
|
name = "cgcx-db"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
cgcx-core = { path = "../cgcx-core" }
|
|
cgcx-config = { path = "../cgcx-config" }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
rusqlite = { version = "0.32", features = ["bundled", "chrono"] }
|
|
rusqlite_migration = "1.3"
|
|
tokio = { version = "1", features = ["sync", "rt"] }
|
|
tracing = "0.1"
|