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