Update to rustix 0.33.5, to fix a link error on Android (#3966)
* Update to rustix 0.33.5, to fix a link error on Android This updates to rustix 0.33.5, which includes bytecodealliance/rustix#258, which fixes bytecodealliance/rustix#256, a link error on Android. Fixes #3965. * Bump the rustix versions in the Cargo.toml files too.
This commit is contained in:
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -2500,9 +2500,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustix"
|
name = "rustix"
|
||||||
version = "0.33.3"
|
version = "0.33.5"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a9466f25b92a648960ac1042fd3baa6b0bf285e60f754d7e5070770c813a177a"
|
checksum = "03627528abcc4a365554d32a9f3bbf67f7694c102cfeda792dc86a2d6057cc85"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"errno",
|
"errno",
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ lazy_static = "1.4.0"
|
|||||||
listenfd = "0.3.5"
|
listenfd = "0.3.5"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
rustix = "0.33.0"
|
rustix = "0.33.5"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
# depend again on wasmtime to activate its default features for tests
|
# depend again on wasmtime to activate its default features for tests
|
||||||
|
|||||||
2
crates/cache/Cargo.toml
vendored
2
crates/cache/Cargo.toml
vendored
@@ -24,7 +24,7 @@ zstd = { version = "0.11.1", default-features = false }
|
|||||||
winapi = "0.3.7"
|
winapi = "0.3.7"
|
||||||
|
|
||||||
[target.'cfg(not(target_os = "windows"))'.dependencies]
|
[target.'cfg(not(target_os = "windows"))'.dependencies]
|
||||||
rustix = "0.33.0"
|
rustix = "0.33.5"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
filetime = "0.2.7"
|
filetime = "0.2.7"
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ edition = "2018"
|
|||||||
links = "wasmtime-fiber-shims"
|
links = "wasmtime-fiber-shims"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
rustix = "0.33.0"
|
rustix = "0.33.5"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies.winapi]
|
[target.'cfg(windows)'.dependencies.winapi]
|
||||||
version = "0.3.9"
|
version = "0.3.9"
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ lazy_static = {version = "1.3.0", optional = true }
|
|||||||
object = { version = "0.27.0", default-features = false, features = ["std", "read_core"], optional = true }
|
object = { version = "0.27.0", default-features = false, features = ["std", "read_core"], optional = true }
|
||||||
|
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target.'cfg(target_os = "linux")'.dependencies]
|
||||||
rustix = { version = "0.33.0", optional = true }
|
rustix = { version = "0.33.5", optional = true }
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
maintenance = { status = "actively-developed" }
|
maintenance = { status = "actively-developed" }
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ log = "0.4.8"
|
|||||||
winapi = { version = "0.3.8", features = ["winnt", "impl-default"] }
|
winapi = { version = "0.3.8", features = ["winnt", "impl-default"] }
|
||||||
|
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target.'cfg(target_os = "linux")'.dependencies]
|
||||||
rustix = "0.33.0"
|
rustix = "0.33.5"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
jitdump = ['wasmtime-jit-debug']
|
jitdump = ['wasmtime-jit-debug']
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ memfd = { version = "0.4.1", optional = true }
|
|||||||
mach = "0.3.2"
|
mach = "0.3.2"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
rustix = "0.33.0"
|
rustix = "0.33.5"
|
||||||
|
|
||||||
[target.'cfg(target_os = "windows")'.dependencies]
|
[target.'cfg(target_os = "windows")'.dependencies]
|
||||||
winapi = { version = "0.3.7", features = ["winbase", "memoryapi", "errhandlingapi", "handleapi"] }
|
winapi = { version = "0.3.7", features = ["winbase", "memoryapi", "errhandlingapi", "handleapi"] }
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ cap-rand = "0.24.1"
|
|||||||
bitflags = "1.2"
|
bitflags = "1.2"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
rustix = "0.33.0"
|
rustix = "0.33.5"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
io-extras = "0.13.2"
|
io-extras = "0.13.2"
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ io-lifetimes = { version = "0.5.0", default-features = false }
|
|||||||
is-terminal = "0.1.0"
|
is-terminal = "0.1.0"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
rustix = "0.33.0"
|
rustix = "0.33.5"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
winapi = "0.3"
|
winapi = "0.3"
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ anyhow = "1"
|
|||||||
io-lifetimes = { version = "0.5.0", default-features = false }
|
io-lifetimes = { version = "0.5.0", default-features = false }
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
rustix = "0.33.0"
|
rustix = "0.33.5"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
winapi = "0.3"
|
winapi = "0.3"
|
||||||
|
|||||||
Reference in New Issue
Block a user