[package] name = "im-rc" version = "15.1.0" edition = "2018" rust-version = "1.46.0" authors = ["Bodil Stokke "] license = "MPL-2.0+" description = "Immutable collection datatypes (the fast but not thread safe version)" repository = "https://github.com/bodil/im-rs" documentation = "http://immutable.rs/" homepage = "http://immutable.rs/" readme = "../../README.md" categories = ["data-structures"] keywords = ["immutable", "persistent", "hamt", "b-tree", "rrb-tree"] build = "./build.rs" [package.metadata.docs.rs] all-features = true [lib] path = "./src/lib.rs" [badges] travis-ci = { repository = "bodil/im-rs" } [features] pool = ["refpool", "sized-chunks/refpool"] debug = [] [build-dependencies] version_check = "0.9" [dependencies] typenum = "1.12" bitmaps = "2" sized-chunks = "0.6.4" rand_core = "0.6" rand_xoshiro = "0.6" quickcheck = { version = "1", optional = true } proptest = { version = "1", optional = true } serde = { version = "1", optional = true } rayon = { version = "1", optional = true } refpool = { version = "0.4", optional = true } arbitrary = { version = "1.1", optional = true } [dev-dependencies] proptest = "1" serde = "1" serde_json = "1" rayon = "1" rand = { version = "0.8", features = ["small_rng"] } pretty_assertions = "1" metrohash = "1" proptest-derive = "0.3" ["package.metadata.docs.rs"] version_check = "0.9"