-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (41 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
43 lines (41 loc) · 1.04 KB
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
[package]
name = "bssh"
version = "0.5.4"
authors = ["Jeongkyu Shin <inureyes@gmail.com>"]
description = "Parallel SSH command execution tool for cluster management"
license = "Apache-2.0"
repository = "https://github.com/lablup/bssh"
readme = "README.md"
keywords = ["cli", "rust"]
categories = ["command-line-utilities"]
edition = "2021"
[dependencies]
tokio = { version = "1.47.1", features = ["full"] }
russh = "0.54.2"
russh-sftp = "2.1.1"
clap = { version = "4", features = ["derive", "env"] }
anyhow = "1.0.99"
thiserror = "2.0.16"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_yaml = "0.9"
futures = "0.3.31"
async-trait = "0.1.89"
indicatif = "0.18.0"
rpassword = "7.4.0"
directories = "6.0.0"
dirs = "6.0"
chrono = "0.4.41"
glob = "0.3.3"
whoami = "1.6.1"
owo-colors = "4.2.2"
unicode-width = "0.2.1"
terminal_size = "0.4.3"
rustyline = "17.0.1"
crossterm = "0.29"
ctrlc = "3.4"
[dev-dependencies]
tempfile = "3"
mockito = "1"
once_cell = "1.21.3"