forked from lumol-org/lumol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (54 loc) · 985 Bytes
/
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
[package]
name = "lumol"
version = "0.0.0"
authors = ["Luthaf <[email protected]>"]
documentation = "https://lumol-org.github.io/lumol"
repository = "https://github.com/lumol-org/lumol"
readme = "README.md"
license = "BSD-3-Clause"
edition = "2018"
[workspace]
members = [
"lumol-core",
"lumol-sim",
"lumol-input",
"tutorials/potential",
]
[[bin]]
name = "lumol"
doc = false
test = false
doctest = false
bench = false
[lib]
test = false
doctest = false
bench = false
[dependencies]
lumol-core = {path = "lumol-core"}
lumol-sim = {path = "lumol-sim"}
lumol-input = {path = "lumol-input"}
log = "0.4"
clap = "2"
chrono = "0.4"
backtrace = "0.3"
[dev-dependencies]
rand = "0.7"
rand_xorshift = "0.2"
env_logger = "0.6"
tempfile = "3"
[dev-dependencies.criterion]
version = "0.2.10"
default-features = false
[[bench]]
name = "water"
harness = false
[[bench]]
name = "nacl"
harness = false
[[bench]]
name = "argon"
harness = false
[[bench]]
name = "propane"
harness = false