cortenforge-cli-support 0.6.0

Shared CLI argument helpers for CortenForge tools and apps (capture, warehouse, seeds, thresholds).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Shared CLI argument structs and seed resolution helpers for CortenForge tooling.
//!
//! This crate provides reusable CLI configuration types (thresholds, weights, output options)
//! and deterministic seed resolution logic for tools and binaries. All types are plain data
//! structs with no framework dependencies by default.
//!
//! ## Optional Features
//! - `bevy-resource`: Derives `Resource` for `RunSeed` to enable Bevy ECS integration.
//!
//! ## Primary Use Case
//! Binaries and tools import these types to ensure consistent CLI parsing and reproducible
//! runs across the CortenForge stack.

pub mod common;
pub mod seed;