[package]
edition = "2024"
name = "provenance-mark"
version = "0.24.0"
authors = ["Blockchain Commons"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A cryptographically-secured system for establishing and verifying the authenticity of works"
documentation = "https://docs.rs/provenance-mark"
readme = "README.md"
keywords = [
"cryptography",
"provenance",
"copyright",
"blockchain",
]
categories = [
"cryptography",
"authentication",
]
license = "BSD-2-Clause-Patent"
repository = "https://github.com/BlockchainCommons/provenance-mark-rust"
resolver = "2"
[features]
default = ["envelope"]
envelope = ["bc-envelope"]
[lib]
name = "provenance_mark"
path = "src/lib.rs"
[[test]]
name = "crypto_utils"
path = "tests/crypto_utils.rs"
[[test]]
name = "date"
path = "tests/date.rs"
[[test]]
name = "identifier"
path = "tests/identifier.rs"
[[test]]
name = "mark"
path = "tests/mark.rs"
[[test]]
name = "validate"
path = "tests/validate.rs"
[[test]]
name = "xoshiro256starstar"
path = "tests/xoshiro256starstar.rs"
[dependencies.base64]
version = "^0.22.0"
[dependencies.bc-envelope]
version = "^0.43.0"
features = [
"known_value",
"known-values-directory-loading",
"types",
"compress",
]
optional = true
default-features = false
[dependencies.bc-rand]
version = "^0.5.0"
[dependencies.bc-tags]
version = "^0.12.0"
[dependencies.bc-ur]
version = "^0.19.2"
[dependencies.chacha20]
version = "0.9.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dcbor]
version = "^0.25.0"
features = ["multithreaded"]
[dependencies.hex]
version = "^0.4.3"
features = ["serde"]
[dependencies.hkdf]
version = "^0.12.3"
[dependencies.rand_core]
version = "^0.9.3"
[dependencies.serde]
version = "^1.0.0"
features = ["derive"]
[dependencies.serde_json]
version = "^1.0.132"
[dependencies.sha2]
version = "^0.10.6"
[dependencies.thiserror]
version = "^2.0"
[dependencies.url]
version = "2.5.3"
[dev-dependencies.hex-literal]
version = "^1.1.0"
[dev-dependencies.indoc]
version = "^2.0.0"
[dev-dependencies.version-sync]
version = "^0.9.0"