35 lines
750 B
TOML

[package]
name = "entropyk-components"
version = "0.1.0"
edition = "2021"
authors = ["Sepehr <sepehr@entropyk.com>"]
description = "Core component trait definitions for Entropyk thermodynamic simulation library"
license = "MIT OR Apache-2.0"
repository = "https://github.com/entropyk/entropyk"
[features]
default = []
ffi = []
http = []
[dependencies]
# Core types from Story 1.2
entropyk-core = { path = "../core" }
# Fluid properties backend (Story 5.1 - FluidBackend integration)
entropyk-fluids = { path = "../fluids" }
# Error handling
thiserror = "1.0"
# Serialization
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
# Floating-point assertions
approx = "0.5"
[lib]
name = "entropyk_components"
path = "src/lib.rs"