blob: 84b6c39a89b4fbbe005053124f2d489f20466e26 [file] [log] [blame]
//! 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`.
pub mod core;
pub mod manifest;
mod restricted_names;