[package]
edition = "2021"
rust-version = "1.75"
name = "boundary-compiler"
version = "0.1.0"
authors = ["sikmindz"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RFC 8785 JSON Canonicalization (JCS) with boundary profiles and duplicate-key rejection"
homepage = "https://github.com/recursiveintell/boundary-compiler"
documentation = "https://docs.rs/boundary-compiler"
readme = "README.md"
keywords = [
"json",
"canonicalization",
"rfc8785",
"jcs",
"content-hash",
]
categories = [
"cryptography",
"encoding",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/recursiveintell/boundary-compiler"
[lib]
name = "boundary_compiler"
path = "src/lib.rs"
[[test]]
name = "jcs_tests"
path = "tests/jcs_tests.rs"
[dependencies.blake3]
version = "1.8.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.tempfile]
version = "3.27.0"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unimplemented = "deny"
[lints.clippy.expect_used]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"