idmap 0.3.0-beta.1

Efficient maps of integer id keys to values, backed by an underlying `Vec`
Documentation
[dependencies.fixedbitset]
version = "0.5"

[dependencies.intid]
version = "0.3.0-beta.1"

[dependencies.petgraph]
optional = true
version = "0.8"

[dependencies.serde]
optional = true
version = "1"

[dev-dependencies.intid]
features = ["derive"]
version = "0.3.0-beta.1"

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

[dev-dependencies.serde]
version = "1"

[dev-dependencies.serde_derive]
version = "1"

[dev-dependencies.serde_test]
version = "1"

[features]
nightly = []
petgraph = ["dep:petgraph"]
serde = ["dep:serde"]

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

[lints.clippy]
alloc_instead_of_core = "deny"
multiple_unsafe_ops_per_block = "deny"
std_instead_of_alloc = "deny"
std_instead_of_core = "deny"
undocumented_unsafe_blocks = "deny"

[lints.rust]
missing-docs = "deny"

[package]
authors = ["Techcable <git@techcable.net>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Efficient maps of integer id keys to values, backed by an underlying `Vec`"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "idmap"
readme = "README.md"
repository = "https://github.com/DuckLogic/intid.rs"
rust-version = "1.65"
version = "0.3.0-beta.1"

[package.metadata.docs.rs]
all-features = true

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

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