[package]
name = "clock-hash"
version = "1.0.0"
edition = "2024"
rust-version = "1.85.0"
authors = ["Olyntar Cryptography Division"]
description = "ClockHash-256: Consensus hash function for ClockinChain"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Olyntar-Labs/clock-hash.git"
documentation = "https://docs.rs/clock-hash"
readme = "README.md"
[lib]
name = "clock_hash"
path = "src/lib.rs"
[[bin]]
name = "debug_cpuid"
path = "src/bin/debug_cpuid.rs"
required-features = ["simd"]
[[bench]]
name = "clockhash_bench"
harness = false
[[bench]]
name = "memory_bench"
harness = false
[[bench]]
name = "primitives_bench"
harness = false
[[bench]]
name = "security_bench"
harness = false
[[bench]]
name = "simd_bench"
harness = false
required-features = ["simd"]
[features]
default = ["std", "bench"]
no_std = []
std = ["alloc"]
alloc = []
simd = []
bench = []
[dependencies]
[dev-dependencies]
criterion = { version = "0.8.1" }
proptest = "1.9.0"
[build-dependencies]