[package]
edition = "2021"
name = "bounded_graph"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A thin newtype wrapper for `petgraph` to assist in the creation of graphs with restrictions on their edges"
homepage = "https://github.com/dave-gray101/bounded_graph"
documentation = "https://docs.rs/bounded_graph"
readme = "README.md"
keywords = [
"petgraph",
"bounded",
"edges",
]
license = "MIT"
repository = "https://github.com/dave-gray101/bounded_graph"
[features]
serde-1 = [
"serde",
"petgraph/serde-1",
]
[lib]
name = "bounded_graph"
path = "src/lib.rs"
[dependencies.fixedbitset]
version = "0.5.7"
[dependencies.petgraph]
version = "0.8.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dev-dependencies.serde_json]
version = "1.0"