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.
at main 1.5 kB view raw
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 = { git = "https://tangled.org/@smokesignal.events/atproto-identity-rs" } 20atproto-jetstream = { git = "https://tangled.org/@smokesignal.events/atproto-identity-rs" } 21atproto-lexicon = { git = "https://tangled.org/@smokesignal.events/atproto-identity-rs" } 22axum = { version = "0.8" } 23bincode = { version = "2.0", features = ["serde"] } 24cadence = "1.6" 25deadpool-redis = { version = "0.22", features = ["connection-manager", "tokio-comp", "tokio-rustls-comp"] } 26httpdate = "1.0" 27metrohash = "1.0" 28reqwest = { version = "0.12", features = ["json"] } 29serde = { version = "1.0", features = ["derive"] } 30serde_json = "1.0" 31sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] } 32thiserror = "2.0" 33tokio = { version = "1.35", features = ["rt-multi-thread", "macros", "signal", "sync", "time", "net", "fs"] } 34tokio-util = { version = "0.7", features = ["rt"] } 35tower-http = { version = "0.6", features = ["fs"] } 36tracing = "0.1" 37tracing-subscriber = { version = "0.3", features = ["env-filter"] } 38 39[dev-dependencies] 40once_cell = "1.20"