-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (32 loc) · 993 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
[package]
name = "gorder"
version = "0.3.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.10.0-dev.1", features = ["parallel", "no-xdrfile"] }
colored = "2.1"
thiserror = "2.0.3"
derive_builder = "0.20.2"
getset = "0.1.3"
log = "0.4.22"
hashbrown = { version = "0.15.2", features = ["serde"] }
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"
statistical = "1.0.0"
strum_macros = "0.26.4"
parking_lot = "0.12.3"
[dev-dependencies]
approx = "0.5.1"
tempfile = "3.14.0"
assert_cmd = "2.0.16"