1[package]
2name = "immutable-chunkmap"
3version = "2.0.6"
4authors = ["Eric Stokes <letaris@gmail.com>"]
5publish = true
6description = "A fast immutable map and set with batch insert and update methods, COW operations, and big O efficient implementations of set and merge operations"
7categories = ["data-structures", "no-std"]
8keywords = ["map", "set", "immutable", "persistent", "functional"]
9license = "Apache-2.0 OR MIT"
10documentation = "https://docs.rs/immutable-chunkmap"
11repository = "https://github.com/estokes/immutable-chunkmap"
12edition = "2018"
13
14[features]
15default = []
16serde = ["dep:serde"]
17rayon = ["dep:rayon"]
18
19[dependencies]
20arrayvec = { version = "0.7", default-features = false }
21serde = { version = "1", default-features = false, features = ["alloc"], optional = true }
22rayon = { version = "1", optional = true }
23
24[dev-dependencies]
25rayon = "1"
26serde = "1"
27serde_json = "1"
28paste = "1"
29rand = "0.8"
30hashbrown = "0.15"
31