natbitset 0.4.0

A lightweight set implementation for consecutive natural numbers
Documentation
# 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 = "2024"
name = "natbitset"
version = "0.4.0"
authors = ["Sup#2.0"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight set implementation for consecutive natural numbers"
documentation = "https://docs.rs/natbitset/latest/natbitset"
readme = "src/readme.md"
license = "MIT"
repository = "https://github.com/Sup2point0/natbitset"

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

[[test]]
name = "constructors"
path = "tests/constructors.rs"

[[test]]
name = "ops"
path = "tests/ops.rs"

[[test]]
name = "query"
path = "tests/query.rs"

[[test]]
name = "set"
path = "tests/set.rs"

[[test]]
name = "traits"
path = "tests/traits.rs"

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

[dependencies.num-traits]
version = "0.2.19"

[dev-dependencies.criterion]
version = "0.8.1"
features = ["html_reports"]

[dev-dependencies.itertools]
version = "0.14.0"