# 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" rust-version = "1.77.0" name = "rapidhash" version = "1.1.0" authors = ["Liam Gray "] build = false exclude = [ "Cargo.lock", ".github", "fuzz", "docs", ] autobins = false autoexamples = false autotests = false autobenches = false description = "A rust port of rapidhash: an extremely fast, high quality, platform-independent hashing algorithm." documentation = "https://docs.rs/rapidhash" readme = "README.md" keywords = [ "hash", "rapidhash", ] categories = [ "algorithms", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://github.com/hoxxep/rapidhash" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "rapidhash" path = "src/lib.rs" [[example]] name = "charts" path = "examples/charts.rs" [[example]] name = "cli" path = "examples/cli.rs" [[bench]] name = "basic" path = "benches/basic.rs" [[bench]] name = "bench" path = "benches/bench.rs" harness = false [[bench]] name = "compiled" path = "benches/compiled.rs" [[bench]] name = "hashmap" path = "benches/hashmap.rs" [[bench]] name = "int" path = "benches/int.rs" [[bench]] name = "object" path = "benches/object.rs" [[bench]] name = "quality" path = "benches/quality.rs" harness = false [[bench]] name = "rng" path = "benches/rng.rs" [[bench]] name = "vector" path = "benches/vector.rs" [dependencies.rand] version = "0.8.5" optional = true [dependencies.rand_core] version = "0.6.4" optional = true default-features = false [dev-dependencies.ahash] version = "0.8.11" [dev-dependencies.const-random] version = "0.1.18" [dev-dependencies.criterion] version = "0.5.1" features = [ "rayon", "cargo_bench_support", ] default-features = false [dev-dependencies.fastrand] version = "2.1.1" [dev-dependencies.fxhash] version = "0.2.1" [dev-dependencies.itertools] version = "0.13.0" [dev-dependencies.lazy_static] version = "1.5.0" [dev-dependencies.metrohash] version = "1.0.6" [dev-dependencies.plotters] version = "0.3.7" features = [ "chrono", "image", "svg_backend", "bitmap_backend", "bitmap_encoder", "line_series", ] default-features = false [dev-dependencies.rand] version = "0.8.5" [dev-dependencies.reqwest] version = "0.12.7" features = ["blocking"] [dev-dependencies.seahash] version = "4.1.0" [dev-dependencies.serde] version = "1.0.210" [dev-dependencies.serde_cbor] version = "0.11.2" [dev-dependencies.t1ha] version = "0.1.2" [dev-dependencies.twox-hash] version = "1.6.3" [dev-dependencies.wyhash] version = "0.5.0" [features] default = ["std"] rand = [ "dep:rand", "std", ] rng = ["dep:rand_core"] std = [] unsafe = [] [target.'cfg(all(any(target_arch = "arm", target_arch = "aarch64"), all(target_feature = "aes", target_feature = "neon")))'.dev-dependencies.gxhash] version = "3.4.1" [target.'cfg(all(any(target_arch = "x86", target_arch = "x86_64"), all(target_feature = "aes", target_feature = "sse2")))'.dev-dependencies.gxhash] version = "3.4.1"