[package]
edition = "2024"
rust-version = "1.85"
name = "idbag"
version = "0.2.3"
build = false
exclude = [
".fossil-settings",
".efiles",
".fslckout",
"www",
"bacon.toml",
"rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A bag of integers."
readme = "README.md"
keywords = [
"bag",
"identifier",
]
categories = ["data-structures"]
license = "0BSD"
repository = "https://repos.qrnch.tech/pub/idbag"
[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]
[badges.maintenance]
status = "passively-maintained"
[lib]
name = "idbag"
path = "src/lib.rs"
[[test]]
name = "arc"
path = "tests/arc.rs"
[[test]]
name = "map_access"
path = "tests/map_access.rs"
[dependencies.hashbrown]
version = "0.16.1"
[dependencies.parking_lot]
version = "0.12.3"
[dependencies.paste]
version = "1.0.15"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1