cargo-lock 3.0.0

Self-contained Cargo.lock parser with optional dependency graph analysis
Documentation
[package]
name = "cargo-lock"
description = "Self-contained Cargo.lock parser with optional dependency graph analysis"
version = "3.0.0"
authors = ["Tony Arcieri <bascule@gmail.com>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
readme = "README.md"
homepage = "https://rustsec.org"
repository = "https://github.com/rustsec/cargo-lock"
categories = ["parser-implementations"]
keywords = ["cargo", "dependency", "lock", "lockfile"]

[badges]
maintenance = { status = "passively-maintained" }

[dependencies]
petgraph = { version = "0.4", optional = true }
semver = { version = "0.9", features = ["serde"] }
serde = { version = "1", features = ["serde_derive"] }
toml = "0.5"

[features]
dependency-tree = ["petgraph"]

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