# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "chibihash" version = "0.4.0" authors = ["Ville Vesilehto "] build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "Rust implementation of the ChibiHash hash function" documentation = "https://docs.rs/chibihash" readme = "README.md" keywords = [ "hash", "chibihash", "fast-hash", "non-cryptographic", ] categories = [ "algorithms", "no-std", ] license = "MIT" repository = "https://github.com/thevilledev/ChibiHash-rs" [profile.bench] opt-level = 3 lto = "thin" codegen-units = 1 [profile.release] opt-level = 3 lto = "thin" codegen-units = 1 [lib] name = "chibihash" path = "src/lib.rs" [[test]] name = "integration" path = "tests/integration.rs" [[bench]] name = "bench" path = "benches/bench.rs" harness = false [[bench]] name = "rust_vs_c" path = "benches/rust_vs_c.rs" harness = false [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] default = ["std"] ffi = ["cc"] std = []