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