blob: 9df4892f6bdcbeab4e0aa05d0cfea7722bd446d8 [file] [log] [blame]
[package]
name = "petgraph"
version = "0.3.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/bluss/petgraph"
keywords = ["data-structure", "graph", "unionfind", "graph-algorithms"]
[lib]
name = "petgraph"
bench = false
[profile.release]
[profile.bench]
debug = true
[dependencies]
fixedbitset = "0.1.2"
quickcheck = { optional = true, version = "0.3" }
ordermap = { version = "0.2.2", optional = true }
[dev-dependencies]
rand = "0.3"
odds = { version = "0.2.19" }
[features]
default = ["graphmap", "stable_graph"]
graphmap = ["ordermap"]
stable_graph = []
# For unstable features
generate = []
unstable = ["generate"]
# feature flags for testing use only
test = []
all = ["test", "unstable", "quickcheck", "stable_graph", "graphmap"]