-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Cargo.toml
55 lines (53 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "nh"
version = "4.0.0-beta.5"
edition = "2021"
license = "EUPL-1.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anstyle = "1.0.0"
clap = { version = "4.0", features = [
"cargo",
"color",
"derive",
"env",
"unstable-styles",
] }
clap_builder = "4.5.9"
clap_complete = "4.5.8"
clean-path = "0.2"
color-eyre = { version = "0.6.2", default-features = false, features = [
"track-caller",
] }
dialoguer = { version = "0.11.0", default-features = false }
elasticsearch-dsl = "0.4.19"
hostname = "0.4"
humantime = "2.1.0"
nix = { version = "0.29.0", default-features = false, features = [
"fs",
"user",
] }
once_cell = "1.18.0"
owo-colors = "4.0.0"
regex = "1.8.4"
reqwest = { version = "0.12.0", features = ["rustls-tls", "blocking", "json"], default-features = false }
semver = "1.0.22"
serde = { version = "1.0.166", features = [
"derive",
] }
serde_json = "1.0.100"
subprocess = "0.2"
supports-hyperlinks = "3.0.0"
tempfile = "3.5.0"
textwrap = { version = "0.16.0", features = ["terminal_size"] }
thiserror = "2.0"
timeago = { version = "0.4.1", default-features = false }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"registry",
"std"
] }
uzers = { version = "0.12.0", default-features = false }
[target.'cfg(target_os="macos")'.dependencies]
system-configuration = "0.6.1"