diff --git a/db/Cargo.toml b/db/Cargo.toml index a07bead..a7979f3 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -4,8 +4,9 @@ version = "0.1.0" edition = "2024" [dependencies] +thiserror = "2.0.12" +atproto.workspace = true async-trait.workspace = true atproto = { workspace = true, features = ["sqlx-support"] } -sqlx.workspace = true -thiserror.workspace = true +sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio"] } tokio.workspace = true