diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index 5df578aa20..fb3606c092 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -39,7 +39,7 @@ serde = "1.0.8" term = "0.6.1" capstone = { version = "0.6.0", optional = true } wabt = { version = "0.9.1", optional = true } -target-lexicon = "0.8.1" +target-lexicon = "0.9" pretty_env_logger = "0.3.0" file-per-thread-logger = "0.1.2" indicatif = "0.13.0" diff --git a/cranelift/codegen/Cargo.toml b/cranelift/codegen/Cargo.toml index 66176bb418..794f560ac1 100644 --- a/cranelift/codegen/Cargo.toml +++ b/cranelift/codegen/Cargo.toml @@ -17,7 +17,7 @@ cranelift-codegen-shared = { path = "./shared", version = "0.48.0" } cranelift-entity = { path = "../cranelift-entity", version = "0.48.0" } cranelift-bforest = { path = "../cranelift-bforest", version = "0.48.0" } hashbrown = { version = "0.6", optional = true } -target-lexicon = "0.8.1" +target-lexicon = "0.9" log = { version = "0.4.6", default-features = false } serde = { version = "1.0.94", features = ["derive"], optional = true } smallvec = { version = "1.0.0" } diff --git a/cranelift/faerie/Cargo.toml b/cranelift/faerie/Cargo.toml index 8d636cdc7c..a886efa69f 100644 --- a/cranelift/faerie/Cargo.toml +++ b/cranelift/faerie/Cargo.toml @@ -11,10 +11,10 @@ edition = "2018" [dependencies] cranelift-module = { path = "../cranelift-module", version = "0.48.0" } -faerie = "0.11.0" +faerie = "0.11.1" goblin = "0.1.0" failure = "0.1.2" -target-lexicon = "0.8.1" +target-lexicon = "0.9" [dependencies.cranelift-codegen] path = "../cranelift-codegen" diff --git a/cranelift/frontend/Cargo.toml b/cranelift/frontend/Cargo.toml index 526dbdd1bc..8fe7f0aebb 100644 --- a/cranelift/frontend/Cargo.toml +++ b/cranelift/frontend/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0", default-features = false } -target-lexicon = "0.8.1" +target-lexicon = "0.9" log = { version = "0.4.6", default-features = false } hashbrown = { version = "0.6", optional = true } smallvec = { version = "1.0.0" } diff --git a/cranelift/fuzz/Cargo.toml b/cranelift/fuzz/Cargo.toml index f164491ef8..8d9cdc0ffa 100644 --- a/cranelift/fuzz/Cargo.toml +++ b/cranelift/fuzz/Cargo.toml @@ -15,7 +15,7 @@ libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" } cranelift-codegen = { path = "../cranelift-codegen" } cranelift-wasm = { path = "../cranelift-wasm" } cranelift-reader = { path = "../cranelift-reader" } -target-lexicon = "0.8.1" +target-lexicon = "0.9" # Prevent this from interfering with workspaces [workspace] diff --git a/cranelift/native/Cargo.toml b/cranelift/native/Cargo.toml index 19b952747b..96d4395ac3 100644 --- a/cranelift/native/Cargo.toml +++ b/cranelift/native/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0", default-features = false } -target-lexicon = "0.8.1" +target-lexicon = "0.9" [target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies] raw-cpuid = "7.0.3" diff --git a/cranelift/object/Cargo.toml b/cranelift/object/Cargo.toml index 9f1a4be124..2df95b41f8 100644 --- a/cranelift/object/Cargo.toml +++ b/cranelift/object/Cargo.toml @@ -11,8 +11,8 @@ edition = "2018" [dependencies] cranelift-module = { path = "../cranelift-module", version = "0.48.0" } -object = { version = "0.15.0", default-features = false, features = ["write"] } -target-lexicon = "0.8.1" +object = { git = "https://github.com/gimli-rs/object", rev = "cba3ed4932e4c594c5eab4f5ef6c51838f4a5056", default-features = false, features = ["write"] } +target-lexicon = "0.9" [dependencies.cranelift-codegen] path = "../cranelift-codegen" diff --git a/cranelift/reader/Cargo.toml b/cranelift/reader/Cargo.toml index fa16526792..e5f30be572 100644 --- a/cranelift/reader/Cargo.toml +++ b/cranelift/reader/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0" } -target-lexicon = "0.8.1" +target-lexicon = "0.9" [badges] maintenance = { status = "experimental" } diff --git a/cranelift/simplejit/Cargo.toml b/cranelift/simplejit/Cargo.toml index 401587bf56..17c9858a61 100644 --- a/cranelift/simplejit/Cargo.toml +++ b/cranelift/simplejit/Cargo.toml @@ -15,7 +15,7 @@ cranelift-native = { path = "../cranelift-native", version = "0.48.0" } region = "2.0.0" libc = { version = "0.2.42" } errno = "0.2.4" -target-lexicon = "0.8.1" +target-lexicon = "0.9" memmap = { version = "0.7.0", optional = true } [dependencies.cranelift-codegen] diff --git a/cranelift/wasm/Cargo.toml b/cranelift/wasm/Cargo.toml index 1a6e5ffec4..b9b89ef497 100644 --- a/cranelift/wasm/Cargo.toml +++ b/cranelift/wasm/Cargo.toml @@ -22,7 +22,7 @@ thiserror = "1.0.4" [dev-dependencies] wabt = "0.9.1" -target-lexicon = "0.8.1" +target-lexicon = "0.9" [features] default = ["std", "basic-blocks"]