1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
// Copyright (c) The cargo-guppy Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Simulations of Cargo behavior.
//!
//! Cargo comes with a set of algorithms to figure out what packages or features are built. This
//! module reimplements those algorithms using `guppy`'s data structures.

pub(super) mod build;
mod cargo_api;

pub use cargo_api::*;