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