[package] name = "quickdid" version = "1.0.0-rc.5" edition = "2024" authors = ["Nick Gerakines "] description = "A fast and scalable com.atproto.identity.resolveHandle service" repository = "https://tangled.sh/@smokesignal.events/quickdid" license = "MIT" publish = false default-run = "quickdid" [[bin]] name = "quickdid" path = "src/bin/quickdid.rs" [dependencies] anyhow = "1.0" async-trait = "0.1" atproto-identity = { git = "https://tangled.org/@smokesignal.events/atproto-identity-rs" } atproto-jetstream = { git = "https://tangled.org/@smokesignal.events/atproto-identity-rs" } atproto-lexicon = { git = "https://tangled.org/@smokesignal.events/atproto-identity-rs" } axum = { version = "0.8" } bincode = { version = "2.0", features = ["serde"] } cadence = "1.6" deadpool-redis = { version = "0.22", features = ["connection-manager", "tokio-comp", "tokio-rustls-comp"] } httpdate = "1.0" metrohash = "1.0" reqwest = { version = "0.12", features = ["json"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] } thiserror = "2.0" tokio = { version = "1.35", features = ["rt-multi-thread", "macros", "signal", "sync", "time", "net", "fs"] } tokio-util = { version = "0.7", features = ["rt"] } tower-http = { version = "0.6", features = ["fs"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } [dev-dependencies] once_cell = "1.20"