Atproto, add sqlx support

This commit is contained in:
Julia Lange 2025-06-16 15:54:20 -07:00
parent ab78d1fb7b
commit 0707b5eed4
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto
6 changed files with 102 additions and 1 deletions

View file

@ -8,7 +8,12 @@ atrium-api = { version = "0.25.3", default-features = false }
lazy-regex = "3.4.1"
serde.workspace = true
serde_json.workspace = true
sqlx = { workspace = true, optional = true }
time = { version = "0.3.41", features = ["parsing", "formatting"] }
tracing-subscriber.workspace = true
tracing.workspace = true
thiserror.workspace = true
[features]
default = []
sqlx-support = ["dep:sqlx"]