Entropyk/bindings/wasm/Cargo.toml

30 lines
801 B
TOML

[package]
name = "entropyk-wasm"
description = "WebAssembly bindings for the Entropyk thermodynamic simulation library"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[lib]
name = "entropyk_wasm"
crate-type = ["cdylib"]
[dependencies]
entropyk = { path = "../../crates/entropyk" }
entropyk-core = { path = "../../crates/core" }
entropyk-components = { path = "../../crates/components" }
entropyk-solver = { path = "../../crates/solver" }
entropyk-fluids = { path = "../../crates/fluids" }
wasm-bindgen = "0.2"
js-sys = "0.3"
console_error_panic_hook = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde-wasm-bindgen = "0.6"
petgraph = "0.6"
[dev-dependencies]
wasm-bindgen-test = "0.3"