Skip to content

Commit 55e0324

Browse files
committed
chore: update Rust dependencies
Updated only Rust dependencies that require no code changes: Updated hex-literal v0.4 -> v1 Updated nix v0.29 -> v0.31 Updated ratatui v0.29.0 -> v0.30 Updated windows-sys v0.59 -> v0.61 These changes also fix the following cargo audit warnings: Crate: paste Version: 1.0.15 Warning: unmaintained Title: paste - no longer maintained Date: 2024-10-07 ID: RUSTSEC-2024-0436 URL: https://rustsec.org/advisories/RUSTSEC-2024-0436 Dependency tree: paste 1.0.15 └── ratatui 0.29.0 └── russh 0.58.0 Crate: lru Version: 0.12.5 Warning: unsound Title: `IterMut` violates Stacked Borrows by invalidating internal pointer Date: 2026-01-07 ID: RUSTSEC-2026-0002 URL: https://rustsec.org/advisories/RUSTSEC-2026-0002 Dependency tree: lru 0.12.5 └── ratatui 0.29.0 └── russh 0.58.0 Signed-off-by: Roger Knecht <rknecht@pm.me>
1 parent 48d898d commit 55e0324

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

cryptovec/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ ssh-encoding = { workspace = true, optional = true }
1414
log.workspace = true
1515

1616
[target.'cfg(unix)'.dependencies]
17-
nix = { version = "0.29", features = ["mman"] }
17+
nix = { version = "0.31", features = ["mman"] }
1818

1919
[target.'cfg(target_os = "windows")'.dependencies]
20-
windows-sys = { version = "0.59", features = [
20+
windows-sys = { version = "0.61", features = [
2121
"Win32_System_Memory",
2222
"Win32_System_SystemInformation",
2323
"Win32_System_Threading",

russh/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ flate2 = { version = "1.0.15", optional = true }
5151
futures.workspace = true
5252
generic-array = { version = "1.3.3", features = ["compat-0_14"] }
5353
getrandom = { version = "0.2.15", features = ["js"] }
54-
hex-literal = "0.4"
54+
hex-literal = "1"
5555
hmac.workspace = true
5656
inout = { version = "0.1", features = ["std"] }
5757
log.workspace = true
@@ -121,7 +121,7 @@ rand.workspace = true
121121
shell-escape = "0.1"
122122
tokio-fd = "0.3"
123123
termion = "4"
124-
ratatui = "0.29.0"
124+
ratatui = "0.30"
125125
tempfile = "3.14.0"
126126

127127
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]

0 commit comments

Comments
 (0)