chore: sync project state and current artifacts

This commit is contained in:
Sepehr
2026-02-22 23:27:31 +01:00
parent 1b6415776e
commit dd77089b22
232 changed files with 37056 additions and 4296 deletions

15
crates/cli/src/lib.rs Normal file
View File

@@ -0,0 +1,15 @@
//! # Entropyk CLI
//!
//! Command-line interface for batch thermodynamic simulations.
//!
//! This crate provides the `entropyk-cli` binary for running thermodynamic
//! simulations from the command line, supporting both single simulations
//! and batch processing.
pub mod batch;
pub mod config;
pub mod error;
pub mod run;
pub use config::ScenarioConfig;
pub use error::{CliError, CliResult, ExitCode};