#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustSec/logos/master/rustsec-logo-lg.png",
html_root_url = "https://docs.rs/cargo-lock/3.0.0"
)]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#[macro_use]
pub mod error;
pub mod dependency;
pub mod lockfile;
pub mod metadata;
pub mod package;
pub use self::{
dependency::Dependency,
error::{Error, ErrorKind},
lockfile::Lockfile,
package::{Package, Version},
};
use std::collections::BTreeMap as Map;