ggen-cli-lib 26.5.19

CLI interface for ggen
Documentation
1
2
3
4
5
6
7
8
9
10
//! Build verification test
//!
//! This test validates that the workspace builds successfully.
//! If this passes, all dependencies are resolved correctly.

#[test]
fn test_workspace_builds() {
    // If we got here, the workspace compiled successfully
    assert!(true, "Workspace built successfully");
}