-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 899 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
[package]
name = "gchemol-gut"
version = "0.4.4"
edition = "2021"
authors = ["Wenping Guo <[email protected]>"]
description = "Selected utilities for Rust development"
homepage = "https://github.com/gchemol/gut"
repository = "https://github.com/gchemol/gut"
license = "MIT"
[dependencies]
# core utils
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1" # better than failure
itertools = "0.10"
# logging
log = "0.4"
env_logger = "0.10"
# configuration
toml = "0.7.3"
lazy_static = "1"
# https://docs.rs/clap/latest/clap/_features/index.html
clap = { version = "4.0.18", features = ["derive", "env", "cargo"] }
# parallel
rayon = "1"
shell-escape = "0.1"
time = "0.3.17"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# command line
duct = "0.13"
tempfile = "3"
[dev-dependencies]
[features]
adhoc = [] # for adhoc hacking