Ship the Next.js cycle editor with CAD chrome, technical HX symbols, Fixed/Free boundary guidance, and secondary water/air pressure drop support in the solver stack. Co-authored-by: Cursor <cursoragent@cursor.com>
30 lines
860 B
TOML
30 lines
860 B
TOML
[package]
|
|
name = "entropyk"
|
|
description = "A thermodynamic cycle simulation library with type-safe APIs"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
readme = "README.md"
|
|
keywords = ["thermodynamics", "simulation", "hvac", "refrigeration", "engineering"]
|
|
categories = ["science", "simulation"]
|
|
|
|
[dependencies]
|
|
entropyk-core = { path = "../core" }
|
|
entropyk-components = { path = "../components" }
|
|
entropyk-fluids = { path = "../fluids", features = ["coolprop"] }
|
|
entropyk-solver = { path = "../solver" }
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing = "0.1"
|
|
petgraph = "0.6"
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--html-in-header", "docs/katex-header.html"]
|