[package]
edition = "2021"
rust-version = "1.75.0"
name = "dig-urn-protocol"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Canonical DIG Network content-addressing + server-untrusted verification contract: the urn:dig: scheme and byte-level grammar (parse / canonical / SHA-256 retrieval-key), the UrnResolver resolution interface, and the fail-closed browser content-verification contract (gate-then-decrypt, u64-bounded chunk split, rootless-URN rejection on the blind tier) over injected merkle/AES primitives."
readme = "README.md"
keywords = [
"dig",
"urn",
"content-addressing",
"merkle",
"verification",
]
categories = [
"cryptography",
"parser-implementations",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/DIG-Network/dig-urn-protocol"
[lib]
name = "dig_urn_protocol"
path = "src/lib.rs"
[[test]]
name = "inclusion_proof_vectors"
path = "tests/inclusion_proof_vectors.rs"
[[test]]
name = "urn_conformance"
path = "tests/urn_conformance.rs"
[dependencies.hex]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dev-dependencies.serde_json]
version = "1"