| # 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 are reading this file be aware that the original Cargo.toml |
| # will likely look very different (and much more reasonable). |
| # See Cargo.toml.orig for the original contents. |
| |
| [package] |
| edition = "2021" |
| rust-version = "1.60" |
| name = "cargo-lock" |
| version = "9.0.0" |
| authors = ["Tony Arcieri <[email protected]>"] |
| description = "Self-contained Cargo.lock parser with optional dependency graph analysis" |
| homepage = "https://rustsec.org" |
| readme = "README.md" |
| keywords = [ |
| "cargo", |
| "dependency", |
| "lock", |
| "lockfile", |
| ] |
| categories = ["parser-implementations"] |
| license = "Apache-2.0 OR MIT" |
| repository = "https://github.com/RustSec/rustsec/tree/main/cargo-lock" |
| resolver = "1" |
| |
| [package.metadata.docs.rs] |
| features = ["dependency-tree"] |
| rustdoc-args = [ |
| "--cfg", |
| "docsrs", |
| ] |
| |
| [[bin]] |
| name = "cargo-lock" |
| required-features = ["cli"] |
| |
| [dependencies.gumdrop] |
| version = "0.8" |
| optional = true |
| |
| [dependencies.petgraph] |
| version = "0.6" |
| optional = true |
| |
| [dependencies.semver] |
| version = "1" |
| features = ["serde"] |
| |
| [dependencies.serde] |
| version = "1" |
| features = ["serde_derive"] |
| |
| [dependencies.toml] |
| version = "0.7" |
| |
| [dependencies.url] |
| version = "2" |
| |
| [features] |
| cli = [ |
| "gumdrop", |
| "dependency-tree", |
| ] |
| dependency-tree = ["petgraph"] |