From 4692e324554bee21948e89e8d0757b23a8600c27 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Sun, 5 Jul 2026 18:03:54 +0700 Subject: [PATCH] Update redox-path to relax canonical path requirement --- bootstrap/Cargo.lock | 10 ++++++++-- bootstrap/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/bootstrap/Cargo.lock b/bootstrap/Cargo.lock index 598e299e15..be34a7c298 100644 --- a/bootstrap/Cargo.lock +++ b/bootstrap/Cargo.lock @@ -25,7 +25,7 @@ dependencies = [ "log", "plain", "redox-initfs", - "redox-path", + "redox-path 0.4.0", "redox-rt", "redox-scheme", "redox_syscall", @@ -148,6 +148,12 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "436d45c2b6a5b159d43da708e62b25be3a4a3d5550d654b72216ade4c4bfd717" +[[package]] +name = "redox-path" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54ec1b67c01c63545205ea6d218b336751399f0d8974c1a635c28604bedb81bc" + [[package]] name = "redox-rt" version = "0.1.0" @@ -159,7 +165,7 @@ dependencies = [ "ioslice", "libredox", "plain", - "redox-path", + "redox-path 0.3.1", "redox_syscall", ] diff --git a/bootstrap/Cargo.toml b/bootstrap/Cargo.toml index 3f197f3e01..e61fa3c4e2 100644 --- a/bootstrap/Cargo.toml +++ b/bootstrap/Cargo.toml @@ -18,7 +18,7 @@ plain = "0.2" redox-initfs = { path = "../initfs", default-features = false } redox_syscall = "0.9.0" redox-scheme = { version = "0.11.2", default-features = false } -redox-path = "0.3.1" +redox-path = "0.4.0" slab = { version = "0.4.9", default-features = false } arrayvec = { version = "0.7.6", default-features = false }