guppy 0.7.0

Track and query Cargo dependency graphs.
Documentation
[package]
name = "guppy"
version = "0.7.0"
description = "Track and query Cargo dependency graphs."
documentation = "https://docs.rs/guppy"
repository = "https://github.com/facebookincubator/cargo-guppy"
authors = ["Rain <rain1@fb.com>", "Brandon Williams <bmwill@fb.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = [
    "cargo",
    "dependencies",
    "graph",
    "guppy",
]
categories = [
    "config",
    "data-structures",
    "development-tools",
    "parser-implementations",
]
edition = "2018"
exclude = [
    # Readme template that doesn't need to be included.
    "README.tpl",
]

[package.metadata.docs.rs]
all-features = true

[badges]
maintenance = { status = "actively-developed" }

[dependencies]
cargo_metadata = "0.12.3"
guppy-summaries = { version = "0.3.1", path = "../guppy-summaries", optional = true }
fixedbitset = { version = "0.2.0", default-features = false }
nested = "0.1.1"
indexmap = "1.6.1"
itertools = "0.10.0"
once_cell = "1.5.2"
pathdiff = "0.2.0"
petgraph = { version = "0.5.1", default-features = false }
proptest = { version = "0.10.1", optional = true }
proptest-derive = { version = "0.2.0", optional = true }
rayon = { version = "1.5.0", optional = true }
semver = "0.11.0"
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.61"
supercow = "0.1.0"
target-spec = { version = "0.6.0", path = "../target-spec" }

[dev-dependencies]
assert_matches = "1.4.0"
fixtures = { path = "../fixtures" }
pretty_assertions = "0.6.1"

[features]
proptest010 = ["proptest", "proptest-derive", "target-spec/proptest010"]
rayon1 = ["rayon"]
summaries = ["guppy-summaries", "target-spec/summaries"]