35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[package]
|
|
name = "dashmap"
|
|
version = "6.2.1"
|
|
authors = ["Acrimon <joel.wejdenstal@gmail.com>"]
|
|
edition = "2018"
|
|
rust-version = "1.65"
|
|
license = "MIT"
|
|
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]
|
|
raw-api = []
|
|
typesize = ["dep:typesize"]
|
|
inline = ["hashbrown/inline-more"]
|
|
|
|
[dependencies]
|
|
lock_api = "0.4.13"
|
|
parking_lot_core = "0.9.11"
|
|
hashbrown = { version = "0.14.5", default-features = false, features = ["raw"] }
|
|
serde = { version = "1.0.228", optional = true, features = ["derive"] }
|
|
cfg-if = "1.0.4"
|
|
rayon = { version = "1.10.0", optional = true }
|
|
once_cell = "1.21.4"
|
|
arbitrary = { version = "1.4.2", optional = true }
|
|
crossbeam-utils = "0.8"
|
|
typesize = { version = "0.1.14", default-features = false, optional = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["rayon", "raw-api", "serde"]
|