Skip to main content

changepacks_rust/
lib.rs

1//! # changepacks-rust
2//!
3//! Rust project support for changepacks.
4//!
5//! Implements project discovery and version management for Cargo.toml files. Uses `toml_edit`
6//! for non-destructive parsing to preserve file formatting, comments, and whitespace. Handles
7//! both single crates and Cargo workspace configurations.
8
9pub mod finder;
10pub mod package;
11pub mod workspace;
12
13pub use finder::RustProjectFinder;