]> git.proxmox.com Git - rustc.git/blob - vendor/hashbrown/Cargo.toml
New upstream version 1.63.0+dfsg1
[rustc.git] / vendor / hashbrown / Cargo.toml
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 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.
11
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/*",
21 ]
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",
29 ]
30 categories = [
31 "data-structures",
32 "no-std",
33 ]
34 license = "MIT OR Apache-2.0"
35 repository = "https://github.com/rust-lang/hashbrown"
36 resolver = "2"
37
38 [package.metadata.docs.rs]
39 features = [
40 "nightly",
41 "rayon",
42 "serde",
43 "raw",
44 ]
45
46 [dependencies.ahash]
47 version = "0.7.0"
48 optional = true
49 default-features = false
50
51 [dependencies.alloc]
52 version = "1.0.0"
53 optional = true
54 package = "rustc-std-workspace-alloc"
55
56 [dependencies.bumpalo]
57 version = "3.5.0"
58 optional = true
59
60 [dependencies.compiler_builtins]
61 version = "0.1.2"
62 optional = true
63
64 [dependencies.core]
65 version = "1.0.0"
66 optional = true
67 package = "rustc-std-workspace-core"
68
69 [dependencies.rayon]
70 version = "1.0"
71 optional = true
72
73 [dependencies.serde]
74 version = "1.0.25"
75 optional = true
76 default-features = false
77
78 [dev-dependencies.doc-comment]
79 version = "0.3.1"
80
81 [dev-dependencies.fnv]
82 version = "1.0.7"
83
84 [dev-dependencies.lazy_static]
85 version = "1.4"
86
87 [dev-dependencies.rand]
88 version = "0.8.3"
89 features = ["small_rng"]
90
91 [dev-dependencies.rayon]
92 version = "1.0"
93
94 [dev-dependencies.serde_test]
95 version = "1.0"
96
97 [features]
98 ahash-compile-time-rng = ["ahash/compile-time-rng"]
99 default = [
100 "ahash",
101 "inline-more",
102 ]
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",
112 ]
113 rustc-internal-api = []