24 lines
541 B
TOML
24 lines
541 B
TOML
[package]
|
|
name = "entropyk-solver"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Sepehr <sepehr@entropyk.com>"]
|
|
description = "System topology and solver engine for Entropyk thermodynamic simulation"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/entropyk/entropyk"
|
|
|
|
[dependencies]
|
|
entropyk-components = { path = "../components" }
|
|
entropyk-core = { path = "../core" }
|
|
nalgebra = "0.33"
|
|
petgraph = "0.6"
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
|
|
[lib]
|
|
name = "entropyk_solver"
|
|
path = "src/lib.rs"
|