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