From e8747ca4d5d441f9dba4984c6bde40a08fc9500f Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Tue, 2 Dec 2025 22:05:39 +0100 Subject: [PATCH] arbitrary package upgrades --- Cargo.toml | 16 ++++++++-------- src/inside_docker.rs | 4 ++-- tests/buildtest/runner.rs | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ce336bc..7407b4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,26 +28,26 @@ serde_json = "1.0" scopeguard = "1.0.0" lazy_static = "1.0.0" tempfile = "3.0.0" -attohttpc = "0.28.0" +attohttpc = "0.30.1" flate2 = "1" tar = "0.4.0" percent-encoding = "2.1.0" walkdir = "2.2" -toml = "0.8.12" +toml = "0.9.8" fs2 = "0.4.3" -remove_dir_all = "0.8.2" +remove_dir_all = "1.0.0" base64 = "0.22.0" -getrandom = { version = "0.2", features = ["std"] } -thiserror = "1.0.20" -git2 = "0.19.0" +getrandom = { version = "0.3.4", features = ["std"] } +thiserror = "2.0.17" +git2 = "0.20.2" [target.'cfg(unix)'.dependencies] -nix = { version = "0.29.0", features = ["signal", "user"]} +nix = { version = "0.30.0", features = ["signal", "user"]} [target.'cfg(windows)'.dependencies] windows-sys = {version = "0.52.0", features = ["Win32_Foundation", "Win32_System_Threading"]} [dev-dependencies] env_logger = "0.11.3" -rand = "0.8.5" +rand = "0.9.2" tiny_http = "0.12.0" diff --git a/src/inside_docker.rs b/src/inside_docker.rs index ec3cb4c..b6ffb73 100644 --- a/src/inside_docker.rs +++ b/src/inside_docker.rs @@ -1,7 +1,7 @@ use crate::cmd::Command; use crate::workspace::Workspace; use base64::{engine::general_purpose::STANDARD as b64, Engine}; -use getrandom::getrandom; +use getrandom::fill; use log::info; static PROBE_FILENAME: &str = "rustwide-probe"; @@ -51,7 +51,7 @@ pub(crate) fn probe_container_id(workspace: &Workspace) -> anyhow::Result