//! `cargo-lock`: Self-contained `Cargo.lock` parser with optional dependency
//! graph analysis. Used by [RustSec].
//!
//! When the `dependency-tree` feature of this crate is enabled, it supports
//! computing a directed graph of the dependency tree expressed in the
//! lockfile, modeled using the [`petgraph`] crate, along with support for
//! printing dependency trees ala the [`cargo-tree`] crate.
//!
//! [RustSec]: https://rustsec.org/
//! [`petgraph`]: https://github.com/petgraph/petgraph
//! [`cargo-tree`]: https://github.com/sfackler/cargo-tree
pub use ;
/// Use `BTreeMap` for all `Map` types in the crate
use BTreeMap as Map;