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 475dfe1ba63faf5b88f1d463d2654c07abf80ed0 33 lines 1.1 kB view raw
1[package] 2name = "quickdid" 3version = "1.0.0-rc.1" 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"] } 22clap = { version = "4", features = ["derive", "env"] } 23deadpool-redis = { version = "0.22", features = ["connection-manager", "tokio-comp", "tokio-rustls-comp"] } 24http = "1.0" 25metrohash = "1.0.7" 26reqwest = { version = "0.12", features = ["json"] } 27serde = { version = "1.0", features = ["derive"] } 28serde_json = "1.0" 29thiserror = "2.0" 30tokio = { version = "1.35", features = ["rt-multi-thread", "macros", "signal", "sync", "time", "net", "fs"] } 31tokio-util = { version = "0.7", features = ["rt"] } 32tracing = "0.1" 33tracing-subscriber = { version = "0.3", features = ["env-filter"] }