appview/Cargo.toml
Julia Lange cd2e03811e
Api, split into Api, Entryway, and Router
For a lil side project I need to make an Entryway, and I already have
enough infrastructure here that I don't want to redo anything.
2025-07-02 10:36:30 -07:00

16 lines
489 B
TOML

[workspace]
resolver = "3"
members = [ "api", "atproto", "entryway", "db", "router", "ingestor" ]
[workspace.dependencies]
async-trait = "0.1.88"
atproto = { path = "./atproto" }
db = { path = "./db" }
router = { path = "./router" }
serde = "1.0.219"
serde_json = "1.0.140"
sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio"] }
thiserror = "2.0.12"
tokio = { version = "1.45.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"