A library for ATProtocol identities.
1[package] 2name = "atproto-client" 3version = "0.13.0" 4description = "HTTP client for AT Protocol services with OAuth and identity integration" 5readme = "README.md" 6homepage = "https://tangled.sh/@smokesignal.events/atproto-identity-rs" 7documentation = "https://docs.rs/atproto-client" 8 9edition.workspace = true 10rust-version.workspace = true 11authors.workspace = true 12repository.workspace = true 13license.workspace = true 14keywords.workspace = true 15categories.workspace = true 16 17[[bin]] 18name = "atproto-client-app-password" 19test = false 20bench = false 21doc = true 22required-features = ["clap"] 23 24[[bin]] 25name = "atproto-client-auth" 26test = false 27bench = false 28doc = true 29required-features = ["clap"] 30 31[[bin]] 32name = "atproto-client-dpop" 33test = false 34bench = false 35doc = true 36required-features = ["clap"] 37 38[dependencies] 39atproto-identity.workspace = true 40atproto-record.workspace = true 41atproto-oauth.workspace = true 42 43anyhow.workspace = true 44reqwest-chain.workspace = true 45reqwest-middleware.workspace = true 46reqwest.workspace = true 47serde_json.workspace = true 48serde.workspace = true 49thiserror.workspace = true 50tokio.workspace = true 51tracing.workspace = true 52urlencoding = "2.1.3" 53bytes = "1.10.1" 54clap = { workspace = true, optional = true } 55rpassword = { workspace = true, optional = true } 56secrecy = { workspace = true, optional = true } 57 58[features] 59default = ["hickory-dns"] 60clap = ["dep:clap", "dep:rpassword", "dep:secrecy"] 61hickory-dns = ["atproto-identity/hickory-dns", "atproto-oauth/hickory-dns"] 62 63[lints] 64workspace = true