petgraph 0.4.6

Graph data structure library. Provides graph types and graph algorithms.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "petgraph"
version = "0.4.6"
authors = ["bluss", "mitchmindtree"]
description = "Graph data structure library. Provides graph types and graph algorithms."
documentation = "https://docs.rs/petgraph/"
keywords = ["data-structure", "graph", "unionfind", "graph-algorithms"]
categories = ["data-structures"]
license = "MIT/Apache-2.0"
repository = "https://github.com/bluss/petgraph"
[package.metadata.docs.rs]
features = ["serde-1", "quickcheck"]
[profile.bench]
debug = true

[profile.release]

[lib]
name = "petgraph"
bench = false
[dependencies.serde_derive]
version = "1.0"
optional = true

[dependencies.serde]
version = "1.0"
optional = true

[dependencies.fixedbitset]
version = "0.1.4"

[dependencies.ordermap]
version = "0.2.2"
optional = true

[dependencies.quickcheck]
version = "0.4"
optional = true
default-features = false
[dev-dependencies.rand]
version = "0.3"

[dev-dependencies.defmac]
version = "0.1"

[dev-dependencies.odds]
version = "0.2.19"

[dev-dependencies.itertools]
version = "0.6.2"

[features]
default = ["graphmap", "stable_graph"]
unstable = ["generate"]
generate = []
stable_graph = []
serde-1 = ["serde", "serde_derive"]
graphmap = ["ordermap"]
all = ["unstable", "quickcheck", "stable_graph", "graphmap"]