-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (29 loc) · 867 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
[package]
name = "gorder"
version = "0.2.0"
description = "Calculating lipid order parameters from Gromacs simulations"
edition = "2021"
license = "MIT"
repository = "https://github.com/Ladme/gorder"
keywords = ["gromacs", "molecular-dynamics", "order", "nmr", "lipids"]
categories = ["command-line-utilities", "science"]
exclude = ["/tests", "/validation"]
[dependencies]
backitup = "0.1.1"
groan_rs = { version = "0.9.0", features = ["parallel"] }
colored = "2.1"
thiserror = "2.0.3"
derive_builder = "0.20.2"
getset = "0.1.3"
log = "0.4.22"
hashbrown = "0.15.2"
serde = { version = "1.0.215", features = ["derive"] }
serde_yaml = "0.9.34"
indexmap = { version = "2.7.0", features = ["serde"] }
clap = { version = "4.5.21", features = ["derive"] }
colog = "1.3.0"
once_cell = "1.20.2"
[dev-dependencies]
approx = "0.5.1"
tempfile = "3.14.0"
assert_cmd = "2.0.16"