-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
70 lines (63 loc) · 1.4 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
[package]
name = "velvet"
version = "0.4.2"
authors = ["Seaton Ullberg <seatonullberg@gmail.com>"]
edition = "2018"
repository = "https://github.com/seatonullberg/velvet"
description = "Classical atomistic simulation engine with a focus on user-friendliness and extensibility"
license = "MIT"
keywords = [
"chemistry",
"materials-science",
"molecular-dynamics",
"physics",
]
categories = [
"science",
"simulation",
]
[workspace]
members = [
"crates/velvet-cli",
"crates/velvet-core",
"crates/velvet-external-data",
"crates/velvet-test-utils",
]
[dependencies]
velvet-core = { path = "crates/velvet-core", version = "0.4.2" }
velvet-external-data = { path = "crates/velvet-external-data", version = "0.1.0" }
hdf5 = { version = "0.7", optional = true }
hdf5-sys = { version = "0.7", optional = true }
[dev-dependencies]
approx = "0.4"
criterion = "0.3"
nalgebra = "0.26"
serial_test = "0.5"
velvet-test-utils = { path = "crates/velvet-test-utils" }
[features]
default = []
f64 = [
"velvet-core/f64",
"velvet-external-data/f64",
"velvet-test-utils/f64",
]
hdf5-output = [
"hdf5",
"hdf5-sys",
"velvet-core/hdf5-output",
]
quiet = [
"velvet-core/quiet"
]
rayon = [
"velvet-core/rayon",
]
[package.metadata.docs.rs]
features = [
"hdf5-sys/static",
"hdf5-sys/zlib"
]
[[bench]]
name = "argon-benchmarks"
path = "benches/argon.rs"
harness = false