17 lines
450 B
TOML
17 lines
450 B
TOML
[package]
|
|
name = "adapter-sqlite"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
domain = { workspace = true }
|
|
adapter-common = { workspace = true }
|
|
infra-wiring = { workspace = true, features = ["sqlite"] }
|
|
async-trait = { workspace = true }
|
|
sqlx = { workspace = true, features = ["sqlite"] }
|
|
chrono = { workspace = true }
|
|
uuid = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|