-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (75 loc) · 2.16 KB
/
Cargo.toml
File metadata and controls
88 lines (75 loc) · 2.16 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "feos"
version = "0.4.3"
authors = ["Gernot Bauer <bauer@itt.uni-stuttgart.de>", "Philipp Rehner <prehner@ethz.ch>"]
edition = "2018"
readme = "README.md"
license = "MIT OR Apache-2.0"
description = "FeOs - A framework for equations of state and classical density functional theory."
homepage = "https://github.com/feos-org"
repository = "https://github.com/feos-org/feos"
keywords = ["physics", "thermodynamics", "equations_of_state", "phase_equilibria"]
categories = ["science"]
[package.metadata.docs.rs]
features = ["all_models", "rayon"]
rustdoc-args = [ "--html-in-header", "./docs-header.html" ]
[workspace]
members = ["feos-core", "feos-dft", "feos-derive"]
[lib]
crate-type = ["rlib", "cdylib"]
[dependencies]
quantity = "0.6"
num-dual = "0.7"
feos-core = { version = "0.4", path = "feos-core" }
feos-dft = { version = "0.4", path = "feos-dft", optional = true }
feos-derive = { version = "0.2", path = "feos-derive" }
numpy = { version = "0.18", optional = true }
ndarray = { version = "0.15", features = ["approx"] }
petgraph = { version = "0.6", optional = true }
thiserror = "1.0"
conv = "0.3"
num-traits = "0.2"
serde = "1.0"
serde_json = "1.0"
lazy_static = { version = "1.4", optional = true }
indexmap = "1.8"
rayon = { version = "1.5", optional = true }
itertools = "0.10"
[dependencies.pyo3]
version = "0.18"
features = ["extension-module", "abi3", "abi3-py37"]
optional = true
[dev-dependencies]
approx = "0.4"
criterion = "0.4"
[profile.release-lto]
inherits = "release"
lto = true
[features]
default = []
dft = ["feos-dft", "petgraph"]
estimator = []
association = []
pcsaft = ["association"]
gc_pcsaft = ["association"]
uvtheory = ["lazy_static"]
pets = []
saftvrqmie = []
rayon = ["dep:rayon", "ndarray/rayon", "feos-core/rayon", "feos-dft?/rayon"]
python = ["pyo3", "numpy", "feos-core/python", "feos-dft?/python", "rayon"]
all_models = ["dft", "estimator", "pcsaft", "gc_pcsaft", "uvtheory", "pets", "saftvrqmie"]
[[bench]]
name = "state_properties"
harness = false
[[bench]]
name = "state_creation"
harness = false
[[bench]]
name = "dual_numbers"
harness = false
[[bench]]
name = "contributions"
harness = false
[[bench]]
name = "dft_pore"
harness = false