-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 1.12 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
[package]
name = "feos-core"
edition.workspace = true
version.workspace = true
authors.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
description = "Core traits and functionalities for the `feos` project."
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "./docs-header.html"]
features = ["rayon"]
[dependencies]
quantity = { workspace = true, features = ["nalgebra", "num-dual"] }
num-dual = { workspace = true }
ndarray = { workspace = true, optional = true }
nalgebra = { workspace = true }
num-traits = { workspace = true }
thiserror = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["preserve_order"] }
indexmap = { workspace = true, features = ["serde"] }
rayon = { workspace = true, optional = true }
itertools = { workspace = true }
[dev-dependencies]
approx = { workspace = true }
quantity = { workspace = true, features = ["approx"] }
[features]
default = []
ndarray = ["dep:ndarray", "quantity/ndarray"]
rayon = ["dep:rayon", "ndarray/rayon"]