-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (33 loc) · 783 Bytes
/
Cargo.toml
File metadata and controls
41 lines (33 loc) · 783 Bytes
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
[package]
name = "rusty-dftd"
version = "0.0.1"
authors = ["xmiaocat <xincheng.miao@stud-mail.uni-wuerzburg.de>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "rusty_dftd_lib"
path = "src/lib.rs"
# crate-type = ["cdylib", "rlib"]
[[bin]]
name = "rusty_dftd_bin"
path = "src/bin.rs"
[dependencies]
approx = "0.5.0"
ndarray = {version = "0.15.6", features = ["serde-1", "approx"]}
ron = "0.8.0"
libm = "0.2.1"
clap = "=3.0.0-beta.2"
chemfiles = "0.10"
nalgebra = "0.32.1"
soa_derive = "0.10.0"
# [profile.release]
# debug = true
[dev-dependencies]
criterion = "0.3"
rand = "0.8.4"
[[bench]]
name = "triple_scale_benchmark"
harness = false
[[bench]]
name = "to_ndarray_benchmark"
harness = false