Files
Entropyk/demo/Cargo.toml
sepehr 5bd180b5b8
Some checks failed
CI / check (push) Has been cancelled
Snapshot WIP: solver HP epic progress, BPHX/HX physics, BMAD skill refresh.
Capture uncommitted solver robustness work (regularization, domain errors, linear solver lifecycle, tube DP/MSH), web workbench updates, and synced BMAD skills across IDE agent folders before starting BPHX pressure-drop.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-19 16:35:31 +02:00

59 lines
1.3 KiB
TOML

[package]
name = "entropyk-demo"
version = "0.1.0"
edition = "2021"
authors = ["Sepehr <sepehr@entropyk.com>"]
description = "Demo and test project for Entropyk library"
[dependencies]
# Local crates
entropyk-core = { path = "../crates/core" }
entropyk-components = { path = "../crates/components" }
entropyk-solver = { path = "../crates/solver" }
entropyk-fluids = { path = "../crates/fluids" }
entropyk-cli = { path = "../crates/cli" }
# Pour des jolis prints
colored = "2.0"
# UI serveur (utilise les composants réels)
axum = "0.7"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.5", features = ["fs", "cors"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = "0.4"
# Parallel batch endpoint (mirrors crates/cli/src/batch.rs rayon pool)
rayon = "1"
[[bin]]
name = "compressor-test"
path = "src/main.rs"
[[bin]]
name = "thermal-coupling"
path = "src/bin/thermal_coupling.rs"
[[bin]]
name = "chiller"
path = "src/bin/chiller.rs"
[[bin]]
name = "ui-server"
path = "src/bin/ui_server.rs"
[[bin]]
name = "eurovent"
path = "src/bin/eurovent.rs"
[[bin]]
name = "macro-chiller"
path = "src/bin/macro_chiller.rs"
[[bin]]
name = "inverse-control-demo"
path = "src/bin/inverse_control_demo.rs"
[dev-dependencies]
approx = "0.5"