dx_forge/version/
mod.rs

1//! Version control and tool registry
2//!
3//! Provides semantic versioning, version requirements, tool registry management,
4//! and Git-like version control with snapshots and branching.
5
6pub mod types;
7pub mod registry;
8pub mod snapshot;
9
10pub use types::{Version, VersionReq};
11pub use registry::{ToolInfo, ToolRegistry, ToolSource};
12pub use snapshot::{
13    Snapshot, SnapshotId, SnapshotManager, Branch, ToolState, FileSnapshot,
14    SnapshotDiff,
15};