]> git.proxmox.com Git - rustc.git/blame - vendor/hashbrown/Cargo.toml
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / vendor / hashbrown / Cargo.toml
CommitLineData
48663c56
XL
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"
1b1a35ee 16version = "0.9.0"
48663c56
XL
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"
e74abb32
XL
25[package.metadata.docs.rs]
26features = ["nightly", "rayon", "serde", "raw"]
27[dependencies.ahash]
1b1a35ee 28version = "0.4.4"
e74abb32 29optional = true
3dfed10e 30default-features = false
e74abb32 31
48663c56
XL
32[dependencies.alloc]
33version = "1.0.0"
34optional = true
35package = "rustc-std-workspace-alloc"
36
37[dependencies.compiler_builtins]
38version = "0.1.2"
39optional = true
40
41[dependencies.core]
42version = "1.0.0"
43optional = true
44package = "rustc-std-workspace-core"
45
46[dependencies.rayon]
47version = "1.0"
48optional = true
49
50[dependencies.serde]
51version = "1.0.25"
52optional = true
53default-features = false
e74abb32
XL
54[dev-dependencies.doc-comment]
55version = "0.3.1"
56
48663c56 57[dev-dependencies.lazy_static]
e74abb32 58version = "1.2"
48663c56
XL
59
60[dev-dependencies.rand]
3dfed10e
XL
61version = "0.7.3"
62features = ["small_rng"]
48663c56
XL
63
64[dev-dependencies.rayon]
65version = "1.0"
66
67[dev-dependencies.rustc-hash]
3dfed10e 68version = "=1.0"
48663c56
XL
69
70[dev-dependencies.serde_test]
71version = "1.0"
72
73[features]
3dfed10e 74ahash-compile-time-rng = ["ahash/compile-time-rng"]
e74abb32
XL
75default = ["ahash", "inline-more"]
76inline-more = []
48663c56 77nightly = []
e74abb32
XL
78raw = []
79rustc-dep-of-std = ["nightly", "core", "compiler_builtins", "alloc", "rustc-internal-api"]
80rustc-internal-api = []