[package]
edition = "2024"
name = "bidirected-adjacency-array"
version = "0.2.5"
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Represent a bidirected graph via an adjacency array."
readme = false
license = "BSD-2-Clause"
repository = "https://github.com/sebschmi/bidirected-adjacency-array"
[features]
binary-io = ["tagged-vec/binary-io"]
random = ["dep:rand"]
[lib]
name = "bidirected_adjacency_array"
path = "src/lib.rs"
[dependencies.bitvec]
version = "1.0.1"
[dependencies.log]
version = "0.4.29"
[dependencies.num-traits]
version = "0.2.19"
[dependencies.optional-numeric-index]
version = "0.3.4"
[dependencies.permutation]
version = "0.4.1"
[dependencies.rand]
version = "0.10.0"
optional = true
[dependencies.tagged-vec]
version = "0.4.4"
[dependencies.thiserror]
version = "2.0.18"