54 lines
1.1 KiB
TOML
54 lines
1.1 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" }
|
|
# Fluid properties backend (Story 5.1 - FluidBackend demo)
|
|
entropyk-fluids = { path = "../crates/fluids" }
|
|
|
|
# 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"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
chrono = "0.4"
|
|
|
|
[[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"
|