[[bench]]
harness = false
name = "clockhash_bench"
path = "benches/clockhash_bench.rs"
[[bench]]
harness = false
name = "memory_bench"
path = "benches/memory_bench.rs"
[[bench]]
harness = false
name = "primitives_bench"
path = "benches/primitives_bench.rs"
[[bench]]
harness = false
name = "security_bench"
path = "benches/security_bench.rs"
[[bench]]
harness = false
name = "simd_bench"
path = "benches/simd_bench.rs"
required-features = ["simd"]
[[bin]]
name = "debug_cpuid"
path = "src/bin/debug_cpuid.rs"
required-features = ["simd"]
[build-dependencies]
[dependencies]
[dev-dependencies.criterion]
version = "0.8.1"
[dev-dependencies.proptest]
version = "1.9.0"
[features]
alloc = []
bench = []
default = ["std", "bench"]
no_std = []
simd = []
std = ["alloc"]
[lib]
name = "clock_hash"
path = "src/lib.rs"
[package]
authors = ["Olyntar Cryptography Division"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
description = "ClockHash-256: Consensus hash function for ClockinChain"
documentation = "https://docs.rs/clock-hash"
edition = "2024"
license = "MIT OR Apache-2.0"
name = "clock-hash"
readme = "README.md"
repository = "https://github.com/Olyntar-Labs/clock-hash.git"
rust-version = "1.85.0"
version = "1.0.0"
[[test]]
name = "api_completeness"
path = "tests/api_completeness.rs"
[[test]]
name = "collision_resistance"
path = "tests/collision_resistance.rs"
[[test]]
name = "cross_architecture_tests"
path = "tests/cross_architecture_tests.rs"
[[test]]
name = "domain_separation"
path = "tests/domain_separation.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "enhanced_constant_time_tests"
path = "tests/enhanced_constant_time_tests.rs"
[[test]]
name = "fuzzing_integration_tests"
path = "tests/fuzzing_integration_tests.rs"
[[test]]
name = "performance_regression"
path = "tests/performance_regression.rs"
[[test]]
name = "streaming_api"
path = "tests/streaming_api.rs"
[[test]]
name = "vectors"
path = "tests/vectors.rs"