[package]
edition = "2021"
rust-version = "1.83"
name = "uor-addr"
version = "0.2.0"
authors = ["The UOR Foundation <https://uor.foundation>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "UOR-ADDR — the typed reference vocabulary for content-addressing across recursively-grammared formats. Standard-library Layer-3 Prism realization of the UOR Foundation; ships the common architectural surface plus the JSON realization under JCS-RFC8785 + NFC + SHA-256."
homepage = "https://github.com/UOR-Foundation/uor-addr"
documentation = "https://docs.rs/uor-addr"
readme = "README.md"
keywords = [
"uor",
"prism",
"content-addressing",
"verifiable",
"no-std",
]
categories = [
"cryptography",
"data-structures",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/UOR-Foundation/uor-addr"
[features]
alloc = []
default = [
"std",
"gguf",
"onnx",
]
gguf = [
"alloc",
"dep:uor-prism-tensor",
]
onnx = [
"alloc",
"dep:uor-prism-tensor",
]
std = [
"alloc",
"uor-prism/std",
]
[lib]
name = "uor_addr"
path = "src/lib.rs"
[[example]]
name = "address_value"
path = "examples/address_value.rs"
[[example]]
name = "asn1_realization"
path = "examples/asn1_realization.rs"
[[example]]
name = "cbor_address"
path = "examples/cbor_address.rs"
[[example]]
name = "codemodule_realization"
path = "examples/codemodule_realization.rs"
[[example]]
name = "codemodule_signed_schema"
path = "examples/codemodule_signed_schema.rs"
[[example]]
name = "common_surface"
path = "examples/common_surface.rs"
[[example]]
name = "composition"
path = "examples/composition.rs"
[[example]]
name = "dedupe_cache"
path = "examples/dedupe_cache.rs"
[[example]]
name = "document_schema"
path = "examples/document_schema.rs"
[[example]]
name = "gguf_model_registry"
path = "examples/gguf_model_registry.rs"
[[example]]
name = "multi_realization"
path = "examples/multi_realization.rs"
[[example]]
name = "onnx_provenance"
path = "examples/onnx_provenance.rs"
[[example]]
name = "photo_schema"
path = "examples/photo_schema.rs"
[[example]]
name = "replay_verification"
path = "examples/replay_verification.rs"
[[example]]
name = "ring_realization"
path = "examples/ring_realization.rs"
[[example]]
name = "sexp_address"
path = "examples/sexp_address.rs"
[[example]]
name = "signed_variant"
path = "examples/signed_variant.rs"
[[example]]
name = "storage_variant"
path = "examples/storage_variant.rs"
[[example]]
name = "typed_distinction"
path = "examples/typed_distinction.rs"
[[example]]
name = "xml_realization"
path = "examples/xml_realization.rs"
[[test]]
name = "all_realizations"
path = "tests/all_realizations.rs"
[[test]]
name = "analysis"
path = "tests/analysis.rs"
[[test]]
name = "asn1_x690_der"
path = "tests/asn1_x690_der.rs"
[[test]]
name = "byte_identity"
path = "tests/byte_identity.rs"
[[test]]
name = "cbor_rfc8949"
path = "tests/cbor_rfc8949.rs"
[[test]]
name = "codemodule_ccmas"
path = "tests/codemodule_ccmas.rs"
[[test]]
name = "common_surface"
path = "tests/common_surface.rs"
[[test]]
name = "composition"
path = "tests/composition.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "cross_validation"
path = "tests/cross_validation.rs"
[[test]]
name = "external_models"
path = "tests/external_models.rs"
[[test]]
name = "gguf_byte_identity"
path = "tests/gguf_byte_identity.rs"
[[test]]
name = "gguf_conformance"
path = "tests/gguf_conformance.rs"
[[test]]
name = "gguf_cross_tool"
path = "tests/gguf_cross_tool.rs"
[[test]]
name = "gguf_cross_validation"
path = "tests/gguf_cross_validation.rs"
[[test]]
name = "hash_kat"
path = "tests/hash_kat.rs"
[[test]]
name = "in_toto_statement_v1"
path = "tests/in_toto_statement_v1.rs"
[[test]]
name = "jcs_rfc8785"
path = "tests/jcs_rfc8785.rs"
[[test]]
name = "nfc_uax15_normalization_test"
path = "tests/nfc_uax15_normalization_test.rs"
[[test]]
name = "onnx_byte_identity"
path = "tests/onnx_byte_identity.rs"
[[test]]
name = "onnx_conformance"
path = "tests/onnx_conformance.rs"
[[test]]
name = "onnx_cross_tool"
path = "tests/onnx_cross_tool.rs"
[[test]]
name = "onnx_cross_validation"
path = "tests/onnx_cross_validation.rs"
[[test]]
name = "replay"
path = "tests/replay.rs"
[[test]]
name = "ring_amendment_43"
path = "tests/ring_amendment_43.rs"
[[test]]
name = "schema_org_conformance"
path = "tests/schema_org_conformance.rs"
[[test]]
name = "sexp_conformance"
path = "tests/sexp_conformance.rs"
[[test]]
name = "sexp_rivest_examples"
path = "tests/sexp_rivest_examples.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[[test]]
name = "typed_input"
path = "tests/typed_input.rs"
[[test]]
name = "variant_storage"
path = "tests/variant_storage.rs"
[[test]]
name = "xml_c14n_1_1"
path = "tests/xml_c14n_1_1.rs"
[dependencies.ryu]
version = "1"
default-features = false
[dependencies.uor-foundation]
version = "0.5.2"
[dependencies.uor-foundation-sdk]
version = "0.5.2"
[dependencies.uor-prism]
version = "0.4"
default-features = false
[dependencies.uor-prism-tensor]
version = "0.4"
optional = true
default-features = false
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.ureq]
version = "2"
features = ["json"]