Entropyk/Cargo.toml
Sepehr fa480ed303 feat: implement mass balance validation for Story 7.1
- Added port_mass_flows to Component trait and implements for core components.
- Added System::check_mass_balance and integrated it into the solver.
- Restored connect methods for ExpansionValve, Compressor, and Pipe to fix integration tests.
- Updated Python and C bindings for validation errors.
- Updated sprint status and story documentation.
2026-02-21 23:21:34 +01:00

39 lines
924 B
TOML

[workspace]
members = [
"crates/components",
"crates/core",
"crates/entropyk",
"crates/fluids",
"demo", # Demo/test project (user experiments)
"crates/solver",
"bindings/python", # Python bindings (PyO3)
"bindings/c", # C FFI bindings (cbindgen)
"bindings/wasm", # WebAssembly bindings (wasm-bindgen)
]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["Sepehr <sepehr@entropyk.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/entropyk/entropyk"
[workspace.dependencies]
# Core dependencies used across crates
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
# Internal crate dependencies
# entropyk-core = { path = "crates/core" }
# entropyk-components = { path = "crates/components" }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[profile.dev]
opt-level = 0
debug = true