]> git.proxmox.com Git - rustc.git/blob - vendor/hashbrown/Cargo.toml
New upstream version 1.52.0~beta.3+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 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]
14 edition = "2018"
15 name = "hashbrown"
16 version = "0.11.0"
17 authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
18 exclude = [".travis.yml", "bors.toml", "/ci/*"]
19 description = "A Rust port of Google's SwissTable hash map"
20 readme = "README.md"
21 keywords = ["hash", "no_std", "hashmap", "swisstable"]
22 categories = ["data-structures", "no-std"]
23 license = "Apache-2.0/MIT"
24 repository = "https://github.com/rust-lang/hashbrown"
25 [package.metadata.docs.rs]
26 features = ["nightly", "rayon", "serde", "raw"]
27 [dependencies.ahash]
28 version = "0.7.0"
29 optional = true
30 default-features = false
31
32 [dependencies.alloc]
33 version = "1.0.0"
34 optional = true
35 package = "rustc-std-workspace-alloc"
36
37 [dependencies.bumpalo]
38 version = "3.5.0"
39 optional = true
40
41 [dependencies.compiler_builtins]
42 version = "0.1.2"
43 optional = true
44
45 [dependencies.core]
46 version = "1.0.0"
47 optional = true
48 package = "rustc-std-workspace-core"
49
50 [dependencies.rayon]
51 version = "1.0"
52 optional = true
53
54 [dependencies.serde]
55 version = "1.0.25"
56 optional = true
57 default-features = false
58 [dev-dependencies.doc-comment]
59 version = "0.3.1"
60
61 [dev-dependencies.fnv]
62 version = "1.0.7"
63
64 [dev-dependencies.lazy_static]
65 version = "1.4"
66
67 [dev-dependencies.rand]
68 version = "0.7.3"
69 features = ["small_rng"]
70
71 [dev-dependencies.rayon]
72 version = "1.0"
73
74 [dev-dependencies.serde_test]
75 version = "1.0"
76
77 [features]
78 ahash-compile-time-rng = ["ahash/compile-time-rng"]
79 default = ["ahash", "inline-more"]
80 inline-more = []
81 nightly = []
82 raw = []
83 rustc-dep-of-std = ["nightly", "core", "compiler_builtins", "alloc", "rustc-internal-api"]
84 rustc-internal-api = []