Bug 1825052 [wpt PR 39246] - Update wpt metadata, a=testonly
[gecko.git] / third_party / rust / hashbrown / Cargo.toml
blobfb130d24d2b8a8afe83ae27072a97022011c2602
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
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.
8 # If you are reading this file be aware that the original Cargo.toml
9 # will likely look very different (and much more reasonable).
10 # See Cargo.toml.orig for the original contents.
12 [package]
13 edition = "2021"
14 rust-version = "1.56.0"
15 name = "hashbrown"
16 version = "0.12.3"
17 authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
18 exclude = [
19     ".github",
20     "/ci/*",
22 description = "A Rust port of Google's SwissTable hash map"
23 readme = "README.md"
24 keywords = [
25     "hash",
26     "no_std",
27     "hashmap",
28     "swisstable",
30 categories = [
31     "data-structures",
32     "no-std",
34 license = "MIT OR Apache-2.0"
35 repository = "https://github.com/rust-lang/hashbrown"
36 resolver = "2"
38 [package.metadata.docs.rs]
39 features = [
40     "nightly",
41     "rayon",
42     "serde",
43     "raw",
46 [dependencies.ahash]
47 version = "0.7.0"
48 optional = true
49 default-features = false
51 [dependencies.alloc]
52 version = "1.0.0"
53 optional = true
54 package = "rustc-std-workspace-alloc"
56 [dependencies.bumpalo]
57 version = "3.5.0"
58 optional = true
60 [dependencies.compiler_builtins]
61 version = "0.1.2"
62 optional = true
64 [dependencies.core]
65 version = "1.0.0"
66 optional = true
67 package = "rustc-std-workspace-core"
69 [dependencies.rayon]
70 version = "1.0"
71 optional = true
73 [dependencies.serde]
74 version = "1.0.25"
75 optional = true
76 default-features = false
78 [dev-dependencies.doc-comment]
79 version = "0.3.1"
81 [dev-dependencies.fnv]
82 version = "1.0.7"
84 [dev-dependencies.lazy_static]
85 version = "1.4"
87 [dev-dependencies.rand]
88 version = "0.8.3"
89 features = ["small_rng"]
91 [dev-dependencies.rayon]
92 version = "1.0"
94 [dev-dependencies.serde_test]
95 version = "1.0"
97 [features]
98 ahash-compile-time-rng = ["ahash/compile-time-rng"]
99 default = [
100     "ahash",
101     "inline-more",
103 inline-more = []
104 nightly = []
105 raw = []
106 rustc-dep-of-std = [
107     "nightly",
108     "core",
109     "compiler_builtins",
110     "alloc",
111     "rustc-internal-api",
113 rustc-internal-api = []