cargo/util/toml_mut/
mod.rs

1//! Utilities for in-place editing of Cargo.toml manifests.
2//!
3//! These utilities operate only on the level of a TOML document, and generally
4//! do not perform any processing of information beyond what is required for
5//! editing. For more comprehensive usage of manifests, see
6//! [`Manifest`](crate::core::manifest::Manifest).
7//!
8//! In most cases, the entrypoint for editing is
9//! [`LocalManifest`](crate::util::toml_mut::manifest::LocalManifest),
10//! which contains editing functionality for a given manifest's dependencies.
11
12pub mod dependency;
13pub mod manifest;
14pub mod upgrade;