Skip to content

Commit a2ba5f5

Browse files
committed
Update dev-dependencies (env_logger, clap, termion)
1 parent 359d708 commit a2ba5f5

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ byteorder = "1.4"
99
bytes = "1.7"
1010
digest = "0.10"
1111
delegate = "0.13"
12-
env_logger = "0.6"
12+
env_logger = "0.11"
1313
futures = "0.3"
1414
hmac = "0.12"
1515
log = "0.4.11"

russh/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ pageant = { version = "0.2", path = "../pageant" }
106106
[dev-dependencies]
107107
anyhow = "1.0.4"
108108
env_logger.workspace = true
109-
clap = { version = "3.2.3", features = ["derive"] }
109+
clap = { version = "4", features = ["derive"] }
110110
tokio = { workspace = true, features = [
111111
"io-std",
112112
"io-util",
@@ -120,7 +120,7 @@ tokio = { workspace = true, features = [
120120
rand.workspace = true
121121
shell-escape = "0.1"
122122
tokio-fd = "0.3"
123-
termion = "2"
123+
termion = "4"
124124
ratatui = "0.29.0"
125125
tempfile = "3.14.0"
126126

russh/examples/client_exec_interactive.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,6 @@ pub struct Cli {
226226
#[clap(long, short = 'o')]
227227
openssh_certificate: Option<PathBuf>,
228228

229-
#[clap(multiple = true, index = 2, required = true)]
229+
#[clap(index = 2, required = true)]
230230
command: Vec<String>,
231231
}

russh/examples/client_exec_simple.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,6 @@ pub struct Cli {
189189
#[clap(long, short = 'o')]
190190
openssh_certificate: Option<PathBuf>,
191191

192-
#[clap(multiple = true, index = 2, required = true)]
192+
#[clap(index = 2, required = true)]
193193
command: Vec<String>,
194194
}

0 commit comments

Comments
 (0)