#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustSec/logos/master/rustsec-logo-lg.png",
html_root_url = "https://docs.rs/cargo-lock/0.2.1"
)]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#[macro_use]
pub mod error;
#[cfg(feature = "dependency-graph")]
pub mod dependency_graph;
pub mod lockfile;
pub mod metadata;
pub mod package;
pub use self::{
error::{Error, ErrorKind},
lockfile::Lockfile,
package::Package,
};
#[cfg(feature = "dependency-graph")]
pub use self::dependency_graph::DependencyGraph;