-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
64 lines (54 loc) · 983 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 <luthaf@luthaf.fr>"]
documentation = "https://lumol-org.github.io/lumol"
repository = "https://github.com/lumol-org/lumol"
readme = "README.md"
license = "BSD-3-Clause"
edition = "2021"
[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 = "4"
chrono = "0.4"
backtrace = "0.3"
[dev-dependencies]
rand = "0.8"
rand_xorshift = "0.3"
env_logger = "0.11"
tempfile = "3"
[dev-dependencies.criterion]
version = "0.5"
default-features = false
[[bench]]
name = "water"
harness = false
[[bench]]
name = "nacl"
harness = false
[[bench]]
name = "argon"
harness = false
[[bench]]
name = "propane"
harness = false