-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (32 loc) · 1.02 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
[package]
name = "pegasus-ssh"
description = "Pegasus: A Multi-Node SSH Command Runner"
authors = ["Jae-Won Chung <[email protected]>"]
version = "1.4.0"
edition = "2021"
repository = "https://github.com/jaywonchung/pegasus"
license = "MIT"
keywords = ["cli", "ssh"]
categories = ["command-line-utilities"]
[[bin]]
name = "pegasus"
path = "src/main.rs"
[dependencies]
openssh = { version = "0.9.9", features = ["native-mux"], default-features = false }
tokio = { version = "1", features = ["rt", "macros", "io-util", "time", "sync", "rt-multi-thread", "parking_lot", "signal"] }
futures = "0.3"
flume = { version = "0.10.10", features = ["async"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
void = "1"
itertools = "0.10.3"
clap = { version = "3.0.13", features = ["derive"] }
handlebars = "4"
handlebars_misc_helpers = { version = "0.13.0", features = ["string", "json"] }
colored = "2"
colourado = "0.2.0"
memchr = "2.4.1"
thiserror = "1.0.50"
async-trait = "0.1.74"
[profile.release]
panic = "abort"