-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 995 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "feos-saft"
version = "0.1.0"
authors = ["Gernot Bauer <bauer@itt.uni-stuttgart.de>",
"Philipp Rehner <prehner@ethz.ch"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Core traits and functionalities for the `feos` project."
homepage = "https://github.com/feos-org"
readme = "README.md"
repository = "https://github.com/feos-org/feos"
keywords = ["physics", "thermodynamics", "equations_of_state", "phase_equilibria"]
categories = ["science"]
workspace = ".."
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "./docs-header.html" ]
[dependencies]
num-dual = { version = "0.5", features = ["linalg"] }
feos-core = { version = "0.3", path = "../feos-core" }
feos-dft = { version = "0.2", path = "../feos-dft", optional = true }
ndarray = { version = "0.15", features = ["serde"] }
pyo3 = { version = "0.16", optional = true }
serde = "1.0"
serde_json = "1.0"
[features]
default = []
association = []
dft = ["feos-dft"]
python = ["pyo3"]