A library for ATProtocol identities.
1[package] 2name = "atproto-record" 3version = "0.13.0" 4description = "AT Protocol record signature operations - cryptographic signing and verification for AT Protocol records" 5readme = "README.md" 6homepage = "https://tangled.sh/@smokesignal.events/atproto-identity-rs" 7documentation = "https://docs.rs/atproto-record" 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-record-sign" 19test = false 20bench = false 21doc = true 22required-features = ["clap", "tokio"] 23 24[[bin]] 25name = "atproto-record-verify" 26test = false 27bench = false 28doc = true 29required-features = ["clap", "tokio"] 30 31[dependencies] 32atproto-identity.workspace = true 33 34anyhow.workspace = true 35base64.workspace = true 36serde_ipld_dagcbor.workspace = true 37serde_json.workspace = true 38serde.workspace = true 39thiserror.workspace = true 40 41tokio = { workspace = true, optional = true } 42chrono = {version = "0.4.41", default-features = false, features = ["std", "now", "serde"]} 43clap = { workspace = true, optional = true } 44 45[features] 46default = ["hickory-dns"] 47clap = ["dep:clap"] 48hickory-dns = ["atproto-identity/hickory-dns"] 49 50[lints] 51workspace = true