]> git.proxmox.com Git - rustc.git/blob - vendor/hashbrown-0.9.1/Cargo.toml
New upstream version 1.54.0+dfsg1
[rustc.git] / vendor / hashbrown-0.9.1 / 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.9.1"
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.4.4"
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.compiler_builtins]
38 version = "0.1.2"
39 optional = true
40
41 [dependencies.core]
42 version = "1.0.0"
43 optional = true
44 package = "rustc-std-workspace-core"
45
46 [dependencies.rayon]
47 version = "1.0"
48 optional = true
49
50 [dependencies.serde]
51 version = "1.0.25"
52 optional = true
53 default-features = false
54 [dev-dependencies.doc-comment]
55 version = "0.3.1"
56
57 [dev-dependencies.lazy_static]
58 version = "1.2"
59
60 [dev-dependencies.rand]
61 version = "0.7.3"
62 features = ["small_rng"]
63
64 [dev-dependencies.rayon]
65 version = "1.0"
66
67 [dev-dependencies.rustc-hash]
68 version = "=1.0"
69
70 [dev-dependencies.serde_test]
71 version = "1.0"
72
73 [features]
74 ahash-compile-time-rng = ["ahash/compile-time-rng"]
75 default = ["ahash", "inline-more"]
76 inline-more = []
77 nightly = []
78 raw = []
79 rustc-dep-of-std = ["nightly", "core", "compiler_builtins", "alloc", "rustc-internal-api"]
80 rustc-internal-api = []