fastset 0.4.1

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

[dependencies]
nanorand = "0.7.0"
serde = { version = "1.0.197", features = ["derive"] }

[dev-dependencies]
criterion = "0.4.0"
hashbrown = "0.14.3"
statrs = "0.16.0"

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

[[bench]]
name = "set"
path = "bench/set.rs"
harness = false

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

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