blob: 0b7358251e47bf16e3e8176f6b5d969363a19238 [file] [log] [blame]
[package]
name = "petgraph"
version = "0.2.9"
license = "MIT/Apache-2.0"
authors = [
"bluss",
"mitchmindtree",
]
description = "Graph data structure library. Provides graph types and graph algorithms."
documentation = "http://bluss.github.io/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.1"
quickcheck = { optional = true, version = "0.3" }
[dev-dependencies]
rand = "0.3"
[features]
# For unstable features: StableGraph, etc
stable_graph = []
generate = []
unstable = ["generate", "stable_graph"]
# feature flags for testing use only
test = []
all = ["test", "unstable", "quickcheck"]