-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 840 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
[package]
name = "minitpr"
description = "Library for Reading Gromacs TPR Files"
version = "0.2.2"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Ladme/minitpr"
keywords = ["gromacs", "molecular-dynamics", "tpr", "simulations"]
categories = ["command-line-utilities", "science"]
exclude = ["/tests", "/.vscode"]
[dependencies]
byteorder = "1.5.0"
colored = "2.1.0"
mendeleev = { version = "0.8.0", default-features = false, features = [
"element_list",
"symbol",
"name",
] }
num = "0.4.1"
num-derive = "0.4.2"
num-traits = "0.2.18"
serde = { version = "1.0.197", features = ["derive"], optional = true }
strum = { version = "0.26.1", features = ["derive"] }
thiserror = "1.0.57"
[dev-dependencies]
float-cmp = "0.9.0"
serde_yaml = "0.9.32"
[features]
serde = ["dep:serde", "mendeleev/serde"]