cargo_util_schemas/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Low-level Cargo format schemas
//!
//! This is types with logic mostly focused on `serde` and `FromStr` for use in reading files and
//! parsing command-lines.
//! Any logic for getting final semantics from these will likely need other tools to process, like
//! `cargo metadata`.
//!
//! > This crate is maintained by the Cargo team for use by the wider
//! > ecosystem. This crate follows semver compatibility for its APIs.

pub mod core;
pub mod manifest;
#[cfg(feature = "unstable-schema")]
pub mod schema;

mod restricted_names;