cyrup_release 0.5.4

Production-quality release management for Rust workspaces
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Workspace analysis and dependency management.
//!
//! This module provides functionality to analyze Cargo workspaces, build dependency graphs,
//! and validate workspace structure for release operations.

mod analyzer;
mod dependency;
mod validator;

pub use analyzer::{WorkspaceInfo, PackageInfo, WorkspaceConfig, PackageConfig, DependencySpec};
pub use dependency::{DependencyGraph, PublishOrder, PublishTier};
pub use validator::{WorkspaceValidator, ValidationResult, ValidationCheck};