dx-forge 0.1.3

Production-ready VCS and orchestration engine for DX tools with Git-like versioning, dual-watcher architecture, traffic branch system, and component injection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Version control and tool registry
//!
//! Provides semantic versioning, version requirements, tool registry management,
//! and Git-like version control with snapshots and branching.

pub mod types;
pub mod registry;
pub mod snapshot;

pub use types::{Version, VersionReq};
pub use registry::{ToolInfo, ToolRegistry, ToolSource};
pub use snapshot::{
    Snapshot, SnapshotId, SnapshotManager, Branch, ToolState, FileSnapshot,
    SnapshotDiff,
};