forked from feos-org/feos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
91 lines (77 loc) · 2.25 KB
/
Cargo.toml
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
89
90
91
[package]
name = "feos"
version = "0.6.1"
authors = ["Gernot Bauer <[email protected]>", "Philipp Rehner <[email protected]>"]
edition = "2021"
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 = { version = "0.7", optional = true }
num-dual = "0.8"
feos-core = { version = "0.6", path = "feos-core" }
feos-dft = { version = "0.6", path = "feos-dft", optional = true }
feos-derive = { version = "0.4", path = "feos-derive" }
numpy = { version = "0.20", 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 = "2.0"
rayon = { version = "1.7", optional = true }
itertools = "0.12"
typenum = "1.16"
[dependencies.pyo3]
version = "0.20"
features = ["extension-module", "abi3", "abi3-py37"]
optional = true
[dev-dependencies]
approx = "0.5"
criterion = "0.5"
[profile.release-lto]
inherits = "release"
lto = true
codegen-units = 1
[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", "quantity/python", "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