-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (54 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
59 lines (54 loc) · 1.21 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
[workspace]
resolver = "2"
members = ["crates/*", "py-feos"]
default-members = ["crates/feos"]
[workspace.package]
version = "0.9.4"
edition = "2024"
authors = [
"Gernot Bauer <bauer@itt.uni-stuttgart.de>",
"Philipp Rehner <prehner@ethz.ch>",
]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/feos-org"
repository = "https://github.com/feos-org/feos"
keywords = [
"physics",
"thermodynamics",
"equations_of_state",
"phase_equilibria",
]
categories = ["science"]
[workspace.dependencies]
quantity = "0.13"
num-dual = "0.13"
ndarray = "0.17"
nalgebra = "0.34"
thiserror = "2.0"
conv = "0.3"
num-traits = "0.2"
serde = "1.0"
serde_json = "1.0"
indexmap = "2.0"
itertools = "0.14"
rayon = "1.11"
petgraph = "0.8"
rustdct = "0.7"
rustfft = "6.0"
libm = "0.2"
gauss-quad = "0.2"
approx = "0.5"
criterion = "0.8"
paste = "1.0"
feos-core = { version = "0.9", path = "crates/feos-core" }
feos-dft = { version = "0.9", path = "crates/feos-dft" }
feos-derive = { version = "0.9", path = "crates/feos-derive" }
feos = { version = "0.9", path = "crates/feos" }
[profile.release-lto]
inherits = "release"
lto = true
codegen-units = 1
[profile.release-lto-thin]
inherits = "release"
lto = "thin"
codegen-units = 1