23 lines
666 B
TOML
23 lines
666 B
TOML
[package]
|
|
name = "entropyk-fmi"
|
|
description = "FMI 2.0 Co-Simulation FMU export for the Entropyk thermodynamic engine (PLC embedding)"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
# cdylib -> the .dll/.so/.dylib bundled inside the .fmu
|
|
# rlib -> reusable from other Rust crates
|
|
name = "entropyk_fmi"
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
entropyk = { path = "../../crates/entropyk" }
|
|
entropyk-cli = { path = "../../crates/cli" }
|
|
entropyk-solver = { path = "../../crates/solver" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
libc = "0.2"
|