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.
52
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 53bc69a7019ffb1cec4c7a59a0009ba9a24dfa4a 37 lines 1.2 kB view raw
1[package] 2name = "quickdid" 3version = "1.0.0-rc.4" 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" } 20axum = { version = "0.8" } 21bincode = { version = "2.0.1", features = ["serde"] } 22cadence = "1.6.0" 23deadpool-redis = { version = "0.22", features = ["connection-manager", "tokio-comp", "tokio-rustls-comp"] } 24httpdate = "1.0" 25metrohash = "1.0.7" 26reqwest = { version = "0.12", features = ["json"] } 27serde = { version = "1.0", features = ["derive"] } 28serde_json = "1.0" 29sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] } 30thiserror = "2.0" 31tokio = { version = "1.35", features = ["rt-multi-thread", "macros", "signal", "sync", "time", "net", "fs"] } 32tokio-util = { version = "0.7", features = ["rt"] } 33tracing = "0.1" 34tracing-subscriber = { version = "0.3", features = ["env-filter"] } 35 36[dev-dependencies] 37once_cell = "1.20"