From 9bcded087e5a85854377c00814b3129e65aa3661 Mon Sep 17 00:00:00 2001 From: vasilito Date: Sun, 5 Jul 2026 09:12:17 +0300 Subject: [PATCH] fix: match syscall path dep version to 0.9.0-rb0.2.5 pre-release Cargo requires path dependency version requirements to explicitly match pre-release versions. The syscall fork is at 0.9.0-rb0.2.5, so 'version = "0.9.0"' doesn't satisfy it. Update to '0.9.0-rb0.2.5'. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d740779abe..f8b6eee422 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,6 +30,6 @@ libc = { version = "0.2", optional = true } # in Rust code it is imported as `syscall`, NOT `redox_syscall`. # This dep is optional and gated by the `redox_syscall` feature # above. Matching upstream `libredox 0.1.18` structure. -redox_syscall = { path = "../syscall", version = "0.9.0", optional = true } +redox_syscall = { path = "../syscall", version = "0.9.0-rb0.2.5", optional = true } ioslice = { version = "0.6", optional = true } plain = { version = "0.2", optional = true }