-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (34 loc) · 970 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
39
40
41
[package]
name = "nodeset"
version = "0.5.0"
authors = ["Francois Diakhate <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/fdiakh/nodeset-rs"
keywords = ["nodeset", "hostlist", "cluster", "hpc"]
categories = ["command-line-utilities"]
description = "NodeSet management library"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "ns"
path = "src/main.rs"
[dependencies]
itertools = "0.10.5"
clap = { version = "4.2.7", features = ["derive"] }
nom = "7.1.3"
eyre = "0.6.8"
log = { version = "0.4.17", features = ["release_max_level_debug"] }
env_logger = "0.10.0"
serde = { version = "1.0.162", features = ["derive"] }
thiserror = "1.0.40"
shellexpand = "3.1.0"
shlex = "1.1.0"
rust-ini = "0.19.0"
serde_yaml = "0.9.34"
auto_enums = "0.8.5"
[dev-dependencies]
tempfile = "3.14.0"
[profile.release]
debug = true
[workspace]
members = ["nodeset-capi"]