QuickDID is a high-performance AT Protocol identity resolution service written in Rust. It provides handle-to-DID resolution with Redis-backed caching and queue processing.
1[package]
2name = "quickdid"
3version = "1.0.0-rc.5"
4edition = "2024"
5authors = ["Nick Gerakines <nick.gerakines@gmail.com>"]
6description = "A fast and scalable com.atproto.identity.resolveHandle service"
7repository = "https://tangled.sh/@smokesignal.events/quickdid"
8license = "MIT"
9publish = false
10default-run = "quickdid"
11
12[[bin]]
13name = "quickdid"
14path = "src/bin/quickdid.rs"
15
16[dependencies]
17anyhow = "1.0"
18async-trait = "0.1"
19atproto-identity = { version = "0.11.3" }
20atproto-jetstream = { version = "0.11.3" }
21axum = { version = "0.8" }
22bincode = { version = "2.0.1", features = ["serde"] }
23cadence = "1.6.0"
24deadpool-redis = { version = "0.22", features = ["connection-manager", "tokio-comp", "tokio-rustls-comp"] }
25httpdate = "1.0"
26metrohash = "1.0.7"
27reqwest = { version = "0.12", features = ["json"] }
28serde = { version = "1.0", features = ["derive"] }
29serde_json = "1.0"
30sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
31thiserror = "2.0"
32tokio = { version = "1.35", features = ["rt-multi-thread", "macros", "signal", "sync", "time", "net", "fs"] }
33tokio-util = { version = "0.7", features = ["rt"] }
34tower-http = { version = "0.6", features = ["fs"] }
35tracing = "0.1"
36tracing-subscriber = { version = "0.3", features = ["env-filter"] }
37
38[dev-dependencies]
39once_cell = "1.20"