appview/db/Cargo.toml
Julia Lange 3eb6aab10f
Cargo, moving async-trait and tokio (DB, Ingestor)
Move async-trait from ingestor to workspace so DB can share.

Update the reference to tokio in DB from version to workspace
2025-06-17 15:12:10 -07:00

9 lines
196 B
TOML

[package]
name = "db"
version = "0.1.0"
edition = "2024"
[dependencies]
async-trait.workspace = true
sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio"] }
tokio.workspace = true