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'.
This commit is contained in:
2026-07-05 09:12:17 +03:00
parent 3bd7013db4
commit 9bcded087e
+1 -1
View File
@@ -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 }