[package]
edition = "2024"
rust-version = "1.85"
name = "confium-transparency"
version = "0.5.5"
authors = ["Ribose Open <open.source@ribose.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Append-only Merkle tree transparency log with OTS anchoring and ERS archival"
homepage = "https://www.confium.org/"
documentation = "https://docs.rs/confium-transparency"
readme = "README.md"
keywords = [
"crypto",
"merkle",
"transparency",
"ots",
"confium",
]
categories = [
"authentication",
"cryptography",
]
license = "BSD-2-Clause"
repository = "https://github.com/confium/confium"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "confium_transparency"
crate-type = ["rlib"]
path = "src/lib.rs"
[[test]]
name = "diff_append"
path = "tests/diff_append.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "inclusion_proof"
path = "benches/inclusion_proof.rs"
harness = false
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hex]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.subtle]
version = "2"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.8"
features = [
"plotters",
"cargo_bench_support",
]
default-features = false
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"net",
"sync",
"macros",
"time",
"io-util",
]