1[package]
2name = "rustc-hash"
3version = "2.1.1"
4authors = ["The Rust Project Developers"]
5description = "A speedy, non-cryptographic hashing algorithm used by rustc"
6license = "Apache-2.0 OR MIT"
7readme = "README.md"
8keywords = ["hash", "hasher", "fxhash", "rustc"]
9repository = "https://github.com/rust-lang/rustc-hash"
10edition = "2021"
11
12[features]
13default = ["std"]
14std = []
15nightly = []
16rand = ["dep:rand", "std"]
17
18[dependencies]
19rand = { version = "0.8", optional = true }
20