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]
13edition = "2018"
14rust-version = "1.65"
15name = "dashmap"
16version = "5.5.3"
17authors = ["Acrimon <[email protected]>"]
18description = "Blazing fast concurrent HashMap for Rust."
19homepage = "https://github.com/xacrimon/dashmap"
20documentation = "https://docs.rs/dashmap"
21readme = "README.md"
22keywords = [
23    "atomic",
24    "concurrent",
25    "hashmap",
26]
27categories = [
28    "concurrency",
29    "algorithms",
30    "data-structures",
31]
32license = "MIT"
33repository = "https://github.com/xacrimon/dashmap"
34
35[package.metadata.docs.rs]
36features = [
37    "rayon",
38    "raw-api",
39    "serde",
40]
41
42[dependencies.arbitrary]
43version = "1.3.0"
44optional = true
45
46[dependencies.cfg-if]
47version = "1.0.0"
48
49[dependencies.hashbrown]
50version = "0.14.0"
51default-features = false
52
53[dependencies.lock_api]
54version = "0.4.10"
55
56[dependencies.once_cell]
57version = "1.18.0"
58
59[dependencies.parking_lot_core]
60version = "0.9.8"
61
62[dependencies.rayon]
63version = "1.7.0"
64optional = true
65
66[dependencies.serde]
67version = "1.0.188"
68features = ["derive"]
69optional = true
70
71[features]
72inline = ["hashbrown/inline-more"]
73raw-api = []
74