[package]
edition = "2021"
rust-version = "1.86"
name = "acdp-jcs"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RFC 8785 JSON Canonicalization Scheme (JCS) implementation used by the Agent Context Distribution Protocol (ACDP)"
homepage = "https://github.com/agentcontextdistributionprotocol/acdp-rs"
documentation = "https://docs.rs/acdp-jcs"
readme = "README.md"
keywords = [
"acdp",
"jcs",
"rfc8785",
"canonicalization",
"json",
]
categories = [
"encoding",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/agentcontextdistributionprotocol/acdp-rs"
[lib]
name = "acdp_jcs"
path = "src/lib.rs"
[dependencies.acdp-primitives]
version = "0.1.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = [
"preserve_order",
"float_roundtrip",
]
[dev-dependencies.hex]
version = "0.4"
[dev-dependencies.sha2]
version = "0.10"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"