-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
45 lines (39 loc) · 1018 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
45
[package]
name = "interactcli-rs"
version = "0.1.0"
authors = ["jiashiwen"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# To use 'RUSTFLAGS="$RUSTFLAGS -A dead_code" cargo build' not desplay dead_code warning
[dependencies]
clap = "4.2.4"
rustyline = "13.0.0"
rustyline-derive = "0.10.0"
shellwords = "1.1.0"
log = "0.4.17"
log4rs = "1.2.0"
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
serde_yaml = "0.9.21"
lazy_static = "1.4.0"
config = "0.13.3"
reqwest = { version = "0.11.16", features = ["json"] }
tokio = { version = "^1", features = ["full"] }
url = "2.3.1"
prettytable-rs = "0.10.0"
anyhow = "1.0.70"
fork = "0.1.21"
sysinfo = "0.29.11"
chrono = "0.4.24"
signal-hook = "0.3.15"
daemonize = "0.5.0"
spinoff = "0.8.0"
[[example]]
name = "sshsample"
path = "examples/sshsample.rs"
[[example]]
name = "configrs"
path = "examples/configrs.rs"
[[example]]
name = "yamlparser"
path = "examples/yamlparser.rs"