[package]
edition = "2024"
rust-version = "1.85"
name = "metamorphic-log"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tamper-evident, append-only transparency log + verification SDK for the Metamorphic platform: RFC 6962/9162 Merkle proofs, C2SP tlog-tiles substrate, witnessed checkpoints, hybrid post-quantum checkpoint signing, and CONIKS-style index privacy. Single source of truth for primitives is metamorphic-crypto."
homepage = "https://metamorphic.app"
readme = "README.md"
keywords = [
"transparency-log",
"merkle",
"rfc6962",
"post-quantum",
"coniks",
]
categories = [
"cryptography",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/moss-piglet/metamorphic-log"
[package.metadata.wasm-pack.profile.release]
wasm-opt = false
[lib]
name = "metamorphic_log"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[test]]
name = "c2sp_vectors"
path = "tests/c2sp_vectors.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "coniks_vectors"
path = "tests/coniks_vectors.rs"
[[test]]
name = "cross_language"
path = "tests/cross_language.rs"
[[test]]
name = "namespace_policy"
path = "tests/namespace_policy.rs"
[[test]]
name = "pq_checkpoint"
path = "tests/pq_checkpoint.rs"
[dependencies.getrandom]
version = "0.2"
[dependencies.metamorphic-crypto]
version = "0.8.1"
[dependencies.thiserror]
version = "2"
[dev-dependencies]
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.proptest]
version = "1"
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]
[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
version = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen-test]
version = "0.3"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
strip = true