102 lines
2.0 KiB
TOML
102 lines
2.0 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2018"
|
|
name = "immutable-chunkmap"
|
|
version = "2.1.2"
|
|
authors = ["Eric Stokes <letaris@gmail.com>"]
|
|
build = false
|
|
publish = true
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
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"
|
|
documentation = "https://docs.rs/immutable-chunkmap"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"map",
|
|
"set",
|
|
"immutable",
|
|
"persistent",
|
|
"functional",
|
|
]
|
|
categories = [
|
|
"data-structures",
|
|
"no-std",
|
|
]
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/estokes/immutable-chunkmap"
|
|
|
|
[features]
|
|
default = []
|
|
pool = [
|
|
"dep:poolshark",
|
|
"dep:fxhash",
|
|
]
|
|
rayon = ["dep:rayon"]
|
|
serde = ["dep:serde"]
|
|
|
|
[lib]
|
|
name = "immutable_chunkmap"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies.arrayvec]
|
|
version = "0.7"
|
|
default-features = false
|
|
|
|
[dependencies.fxhash]
|
|
version = "0.2"
|
|
optional = true
|
|
|
|
[dependencies.poolshark]
|
|
version = "0.2.0"
|
|
optional = true
|
|
|
|
[dependencies.rayon]
|
|
version = "1"
|
|
optional = true
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
features = ["alloc"]
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dev-dependencies.arcstr]
|
|
version = "1"
|
|
|
|
[dev-dependencies.compact_str]
|
|
version = "0.9"
|
|
|
|
[dev-dependencies.hashbrown]
|
|
version = "0.15"
|
|
|
|
[dev-dependencies.netidx-value]
|
|
version = "0.29"
|
|
|
|
[dev-dependencies.paste]
|
|
version = "1"
|
|
|
|
[dev-dependencies.rand]
|
|
version = "0.8"
|
|
|
|
[dev-dependencies.rayon]
|
|
version = "1"
|
|
|
|
[dev-dependencies.serde]
|
|
version = "1"
|
|
|
|
[dev-dependencies.serde_json]
|
|
version = "1"
|