1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies 7# 8# If you believe there's an error in this file please file an 9# issue against the rust-lang/cargo repository. If you're 10# editing this file be aware that the upstream Cargo.toml 11# will likely look very different (and much more reasonable) 12 13[package] 14edition = "2018" 15name = "hashbrown" 16version = "0.11.2" 17authors = ["Amanieu d'Antras <amanieu@gmail.com>"] 18exclude = [".travis.yml", "bors.toml", "/ci/*"] 19description = "A Rust port of Google's SwissTable hash map" 20readme = "README.md" 21keywords = ["hash", "no_std", "hashmap", "swisstable"] 22categories = ["data-structures", "no-std"] 23license = "Apache-2.0/MIT" 24repository = "https://github.com/rust-lang/hashbrown" 25[package.metadata.docs.rs] 26features = ["nightly", "rayon", "serde", "raw"] 27[dependencies.ahash] 28version = "0.7.0" 29optional = true 30default-features = false 31 32[dependencies.alloc] 33version = "1.0.0" 34optional = true 35package = "rustc-std-workspace-alloc" 36 37[dependencies.bumpalo] 38version = "3.5.0" 39optional = true 40 41[dependencies.compiler_builtins] 42version = "0.1.2" 43optional = true 44 45[dependencies.core] 46version = "1.0.0" 47optional = true 48package = "rustc-std-workspace-core" 49 50[dependencies.rayon] 51version = "1.0" 52optional = true 53 54[dependencies.serde] 55version = "1.0.25" 56optional = true 57default-features = false 58[dev-dependencies.doc-comment] 59version = "0.3.1" 60 61[dev-dependencies.fnv] 62version = "1.0.7" 63 64[dev-dependencies.lazy_static] 65version = "1.4" 66 67[dev-dependencies.rand] 68version = "0.7.3" 69features = ["small_rng"] 70 71[dev-dependencies.rayon] 72version = "1.0" 73 74[dev-dependencies.serde_test] 75version = "1.0" 76 77[features] 78ahash-compile-time-rng = ["ahash/compile-time-rng"] 79default = ["ahash", "inline-more"] 80inline-more = [] 81nightly = [] 82raw = [] 83rustc-dep-of-std = ["nightly", "core", "compiler_builtins", "alloc", "rustc-internal-api"] 84rustc-internal-api = [] 85