[package]
edition = "2021"
rust-version = "1.86"
name = "acdp-validation"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Schema/structural validation for the Agent Context Distribution Protocol (ACDP)"
homepage = "https://github.com/agentcontextdistributionprotocol/acdp-rs"
documentation = "https://docs.rs/acdp-validation"
readme = "README.md"
keywords = [
"acdp",
"validation",
"schema",
"agent",
"context",
]
categories = [
"data-structures",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/agentcontextdistributionprotocol/acdp-rs"
[lib]
name = "acdp_validation"
path = "src/lib.rs"
[dependencies.acdp-crypto]
version = "0.1.0"
[dependencies.acdp-did]
version = "0.1.0"
[dependencies.acdp-primitives]
version = "0.1.0"
[dependencies.acdp-types]
version = "0.1.0"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hex]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = [
"preserve_order",
"float_roundtrip",
]
[dependencies.sha2]
version = "0.10"
[dev-dependencies]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"