[package] name = "chibihash" version = "0.4.0" edition = "2021" license = "MIT" authors = ["Ville Vesilehto "] description = "Rust implementation of the ChibiHash hash function" repository = "https://github.com/thevilledev/ChibiHash-rs" documentation = "https://docs.rs/chibihash" keywords = ["hash", "chibihash", "fast-hash", "non-cryptographic"] categories = ["algorithms", "no-std"] [dependencies.hashbrown] version = "0.15.2" default-features = false [dev-dependencies] criterion = { version = "0.5", features = ["html_reports"] } [build-dependencies] cc = { version = "1.2.1", optional = true } [features] ffi = ["cc"] default = ["std"] std = [] [profile.release] opt-level = 3 lto = "thin" codegen-units = 1 [profile.bench] opt-level = 3 lto = "thin" codegen-units = 1 [[bench]] name = "bench" harness = false [[bench]] name = "rust_vs_c" harness = false