Skip to content

Commit

Permalink
feat: crate feature named all that enables all features except inline
Browse files Browse the repository at this point in the history
  • Loading branch information
xacrimon committed Feb 3, 2025
1 parent 340cdc4 commit 9b74a37
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "dashmap"
version = "6.1.0"
authors = ["Acrimon <joel.wejdenstal@gmail.com>"]
edition = "2018"
authors = ["Joel Wejdenstål <jwejdenstal@icloud.com>"]
edition = "2021"
rust-version = "1.65"
license = "MIT"
repository = "https://github.com/xacrimon/dashmap"
Expand All @@ -14,6 +14,7 @@ keywords = ["atomic", "concurrent", "hashmap"]
categories = ["concurrency", "algorithms", "data-structures"]

[features]
all = ["raw-api", "typesize", "serde", "rayon", "arbitrary"]
raw-api = []
typesize = ["dep:typesize"]
inline = ["hashbrown/inline-more"]
Expand All @@ -31,4 +32,4 @@ crossbeam-utils = "0.8"
typesize = { version = "0.1.8", default-features = false, optional = true }

[package.metadata.docs.rs]
features = ["rayon", "raw-api", "serde"]
features = ["all"]

0 comments on commit 9b74a37

Please sign in to comment.