petgraph 0.5.0

Graph data structure library. Provides graph types and graph algorithms.
Documentation
[package]

name = "petgraph"
version = "0.5.0"
license = "MIT/Apache-2.0"
authors = [
"bluss",
"mitchmindtree",
]

description = "Graph data structure library. Provides graph types and graph algorithms."
documentation = "https://docs.rs/petgraph/"
repository = "https://github.com/petgraph/petgraph"

keywords = ["data-structure", "graph", "unionfind", "graph-algorithms"]
categories = ["data-structures"]

edition = "2018"

[lib]

name = "petgraph"
bench = false

[profile.release]

[profile.bench]
debug = true

[dependencies]
fixedbitset = { version = "0.2.0", default-features = false }
quickcheck = { optional = true, version = "0.8", default-features = false }
indexmap = { version = "1.0.2" }
serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }

[dev-dependencies]
rand = "0.5.5"
odds = { version = "0.2.19" }
defmac = "0.1"
itertools = { version = "0.8", default-features = false }

[features]
default = ["graphmap", "stable_graph", "matrix_graph"]
graphmap = []
serde-1 = ["serde", "serde_derive"]
stable_graph = []
matrix_graph = []

# For unstable features
generate = []
unstable = ["generate"]

# feature flags for testing use only
all = ["unstable", "quickcheck", "matrix_graph", "stable_graph", "graphmap"]

[workspace]
members = ["serialization-tests"]

[package.metadata.docs.rs]
features = ["serde-1", "quickcheck"]

[package.metadata.release]
no-dev-version = true