[package] name = "hash-trie" version = "0.4.0" authors = ["Mitchell Keith Bloch "] description = "Hash Array Mapped Trie (HAMT) Immutable Set Implementation" readme = "README.md" edition = "2018" repository = "https://github.com/bazald/hash-trie/" license = "MPL-2.0" keywords = ["hashmap", "nostd", "concurrency", "immutable", "generic"] [dependencies] fnv = "1.0.7" rayon = { version = "1.5.1", optional = true } [dev-dependencies] im = "15.0.0" rand = "0.8.3" [features] default = [] parallel = ["rayon"]