fastset 0.5.1

Fast set implementation for dense, bounded integer collections, optimized for quick updates and access.
Documentation
[[bench]]
harness = false
name = "set"
path = "bench/set.rs"

[[bin]]
name = "memory_hashset"
path = "bin/memory_usage_hashset.rs"

[[bin]]
name = "memory_set"
path = "bin/memory_usage_set.rs"

[dependencies.nanorand]
version = "0.7.0"

[dependencies.serde]
features = ["derive"]
version = "1.0.197"

[dev-dependencies.criterion]
version = "0.4.0"

[dev-dependencies.hashbrown]
version = "0.14.3"

[dev-dependencies.statrs]
version = "0.16.0"

[lib]
name = "fastset"
path = "src/lib.rs"

[package]
authors = ["Ayan Das"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["data-structures"]
description = "Fast set implementation for dense, bounded integer collections, optimized for quick updates and access."
documentation = "https://docs.rs/fastset"
edition = "2021"
homepage = "https://github.com/b-vitamins/fastset"
keywords = ["set", "bounded", "integer", "performance", "delphic"]
license = "MIT"
name = "fastset"
readme = "README.md"
repository = "https://github.com/b-vitamins/fastset"
version = "0.5.1"

[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3