-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (40 loc) · 1022 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
42
43
44
[package]
name = "geneos-xtender"
version = "0.9.2"
license = "Apache-2.0"
edition = "2021"
authors = ["Johan Thorén <jthoren@itrsgroup.com>"]
readme = "README.md"
repository = "https://github.com/ITRS-Group/geneos-xtender"
keywords = ["nagios", "geneos", "monitoring", "op5", "opsview"]
categories = ["command-line-utilities"]
[lib]
path = "src/lib.rs"
[[bin]]
name = "xtender"
path = "src/main.rs"
[dependencies]
clap = { version = "4.3.0", features = ["derive"] }
csv = "1.2.1"
futures = "0.3.28"
log = "0.4.18"
perfdata = "0.4.2"
regex = "1.8.3"
serde = { version = "1.0.163", features = ["derive"] }
serde-csv-core = "0.2.0"
serde_yaml = "0.9.21"
serde_json = "1.0.96"
shellwords = "1.1.0"
stderrlog = "0.6"
tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread"] }
wait-timeout = "0.2.0"
openssl = "0.10.66"
lazy_static = "1.4.0"
hex = "0.4.3"
once_cell = "1.19.0"
[dev-dependencies]
pretty_assertions = "1.3.0"
assert_cmd = "2.0.11"
predicates = "3.0.3"
serial_test = "3.1.1"
tempfile = "3.6.0"