Skip to main content

changepacks_dart/
lib.rs

1//! # changepacks-dart
2//!
3//! Dart project support for changepacks.
4//!
5//! Implements project discovery and version management for pubspec.yaml files. Parses YAML
6//! using the `serde_yaml` crate while maintaining formatting. Supports both single packages
7//! and workspace configurations with pub as the package manager.
8
9pub mod finder;
10pub mod package;
11pub mod workspace;
12
13pub use finder::DartProjectFinder;