dashmap/Cargo.toml

34 lines
891 B
TOML
Raw Normal View History

[package]
name = "dashmap"
2020-07-04 19:16:16 +00:00
version = "3.11.6"
2019-12-06 21:53:51 +00:00
authors = ["Acrimon <joel.wejdenstal@gmail.com>"]
edition = "2018"
license = "MIT"
2019-12-06 21:53:51 +00:00
repository = "https://github.com/xacrimon/dashmap"
homepage = "https://github.com/xacrimon/dashmap"
description = "Blazing fast concurrent HashMap for Rust."
readme = "README.md"
documentation = "https://docs.rs/dashmap"
keywords = ["atomic", "concurrent", "hashmap"]
categories = ["concurrency", "algorithms", "data-structures"]
[features]
2020-03-26 15:26:29 +00:00
default = []
raw-api = []
2020-03-26 15:26:29 +00:00
no_std = ["hashbrown"]
2020-07-04 19:01:37 +00:00
[target.'cfg(target_arch = "x86_64")'.dependencies]
ahash = "0.4.0"
[target.'cfg(not(target_arch = "x86_64"))'.dependencies]
ahash = "0.3.8"
[dependencies]
2020-05-24 22:09:45 +00:00
num_cpus = "1.13.0"
2020-07-02 23:21:05 +00:00
serde = { version = "1.0.114", optional = true, features = ["derive"] }
cfg-if = "0.1.10"
2020-07-02 23:21:05 +00:00
hashbrown = { version = "0.8.0", optional = true }
[package.metadata.docs.rs]
2020-03-27 22:47:44 +00:00
features = ["raw-api"]