[package]
edition = "2021"
rust-version = "1.86"
name = "acdp-verify"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-level body/publish-request verification (DID resolution + signature) for the Agent Context Distribution Protocol (ACDP)"
homepage = "https://github.com/agentcontextdistributionprotocol/acdp-rs"
documentation = "https://docs.rs/acdp-verify"
readme = "README.md"
keywords = [
"acdp",
"verification",
"signature",
"did",
"ed25519",
]
categories = [
"cryptography",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/agentcontextdistributionprotocol/acdp-rs"
[features]
client = ["acdp-did/client"]
[lib]
name = "acdp_verify"
path = "src/lib.rs"
[dependencies.acdp-crypto]
version = "0.1.1"
[dependencies.acdp-did]
version = "0.1.1"
[dependencies.acdp-primitives]
version = "0.1.1"
[dependencies.acdp-types]
version = "0.1.1"
[dependencies.acdp-validation]
version = "0.1.0"
[dependencies.serde_json]
version = "1"
features = [
"preserve_order",
"float_roundtrip",
]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"