-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (42 loc) · 1.38 KB
/
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
39
40
41
42
43
44
[package]
name = "row"
version = "0.3.1"
edition = "2021"
rust-version = "1.77"
description = "Row is a command line tool that helps you manage workflows on HPC resources."
homepage = "https://glotzerlab.engin.umich.edu"
documentation = "https://row.readthedocs.io"
readme = "README.md"
repository = "https://github.com/glotzerlab/row"
license = "BSD-3-Clause"
keywords = ["workflow", "slurm", "queue", "hpc", "cluster"]
categories = ["command-line-utilities", "science"]
[dependencies]
clap = { version = "4.5.21", features = ["derive", "env"] }
clap-verbosity-flag = "3.0.1"
console = "0.15.8"
env_logger = "0.11.5"
home = "0.5.9"
human_format = "1.1.0"
indicatif = "0.17.9"
indicatif-log-bridge = "0.2.3"
log = "0.4.22"
memchr = "2.7.4"
nix = { version = "0.29.0", features = ["signal"] }
path-absolutize = "3.1.1"
postcard = { version = "1.1.1", default-features = false, features = ["use-std"] }
regex = "1.11.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
shell-quote = { version = "0.7.1", default-features = false, features = ["bash"] }
signal-hook = { version = "0.3.17", default-features = false }
speedate = "0.15.0"
thiserror = "1.0.66"
toml = "0.8.19"
uuid = { version = "1.11.0", features = ["v4"] }
wildmatch = "2.4.0"
[dev-dependencies]
assert_cmd = "2.0.15"
assert_fs = "1.1.2"
predicates = { version = "3.1.2", features = ["regex"] }
serial_test = "3.2.0"