Atproto Types Overhaul and DB Interface #3

Merged
Julia merged 4 commits from db-ingestion-interface into main 2025-06-17 15:49:17 -07:00
4 changed files with 5 additions and 2 deletions
Showing only changes of commit 3eb6aab10f - Show all commits

1
Cargo.lock generated
View file

@ -563,6 +563,7 @@ dependencies = [
name = "db"
version = "0.1.0"
dependencies = [
"async-trait",
"sqlx",
"tokio",
]

View file

@ -3,6 +3,7 @@ resolver = "3"
members = [ "api", "atproto","db", "ingestor"]
[workspace.dependencies]
async-trait = "0.1.88"
atproto = { path = "./atproto" }
serde = "1.0.219"
serde_json = "1.0.140"

View file

@ -4,5 +4,6 @@ version = "0.1.0"
edition = "2024"
[dependencies]
async-trait.workspace = true
sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio"] }
tokio = "1.45.0"
tokio.workspace = true

View file

@ -5,7 +5,7 @@ edition = "2024"
[dependencies]
anyhow = "1.0.98"
async-trait = "0.1.88"
async-trait.workspace = true
atproto.workspace = true
rocketman = "0.2.0"
serde.workspace = true