guppy/graph/cargo/mod.rs
1// Copyright (c) The cargo-guppy Contributors
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4//! Simulations of Cargo behavior.
5//!
6//! Cargo comes with a set of algorithms to figure out what packages or features are built. This
7//! module reimplements those algorithms using `guppy`'s data structures.
8
9pub(super) mod build;
10mod cargo_api;
11
12pub use cargo_api::*;