diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index f72510e956..f6d3384286 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -38,7 +38,7 @@ serde = "1.0.8" term = "0.5.1" capstone = { version = "0.5.0", optional = true } wabt = { version = "0.7.0", optional = true } -target-lexicon = "0.2.0" +target-lexicon = "0.3.0" pretty_env_logger = "0.3.0" file-per-thread-logger = "0.1.2" diff --git a/cranelift/codegen/Cargo.toml b/cranelift/codegen/Cargo.toml index c327308cb0..8d906d0de7 100644 --- a/cranelift/codegen/Cargo.toml +++ b/cranelift/codegen/Cargo.toml @@ -18,7 +18,7 @@ cranelift-bforest = { path = "../cranelift-bforest", version = "0.29.0", default failure = { version = "0.1.1", default-features = false, features = ["derive"] } failure_derive = { version = "0.1.1", default-features = false } hashmap_core = { version = "0.1.9", optional = true } -target-lexicon = { version = "0.2.0", default-features = false } +target-lexicon = { version = "0.3.0", default-features = false } log = { version = "0.4.6", default-features = false } # It is a goal of the cranelift-codegen crate to have minimal external dependencies. # Please don't add any unless they are essential to the task of creating binary diff --git a/cranelift/faerie/Cargo.toml b/cranelift/faerie/Cargo.toml index 77c329f1f8..3355788fd4 100644 --- a/cranelift/faerie/Cargo.toml +++ b/cranelift/faerie/Cargo.toml @@ -12,10 +12,10 @@ edition = "2018" [dependencies] cranelift-codegen = { path = "../cranelift-codegen", version = "0.29.0" } cranelift-module = { path = "../cranelift-module", version = "0.29.0" } -faerie = "0.8.0" +faerie = "0.9.1" goblin = "0.0.21" failure = "0.1.2" -target-lexicon = "0.2.0" +target-lexicon = "0.3.0" [badges] maintenance = { status = "experimental" } diff --git a/cranelift/frontend/Cargo.toml b/cranelift/frontend/Cargo.toml index c2f0870378..9cec2f2877 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.29.0", default-features = false } -target-lexicon = { version = "0.2.0", default-features = false } +target-lexicon = { version = "0.3.0", default-features = false } log = { version = "0.4.6", default-features = false } hashmap_core = { version = "0.1.9", optional = true } diff --git a/cranelift/fuzz/Cargo.toml b/cranelift/fuzz/Cargo.toml index d064d0bb81..0a2acc410f 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.2.0" +target-lexicon = "0.3.0" # Prevent this from interfering with workspaces [workspace] diff --git a/cranelift/native/Cargo.toml b/cranelift/native/Cargo.toml index 49e04a9163..b5ba3f20b2 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.29.0", default-features = false } -target-lexicon = { version = "0.2.0", default-features = false } +target-lexicon = { version = "0.3.0", default-features = false } [target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies] raw-cpuid = "6.0.0" diff --git a/cranelift/reader/Cargo.toml b/cranelift/reader/Cargo.toml index 111f24ff46..6445590442 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.29.0" } -target-lexicon = "0.2.0" +target-lexicon = "0.3.0" [badges] maintenance = { status = "experimental" } diff --git a/cranelift/simplejit/Cargo.toml b/cranelift/simplejit/Cargo.toml index b663148cb5..9ed2402683 100644 --- a/cranelift/simplejit/Cargo.toml +++ b/cranelift/simplejit/Cargo.toml @@ -16,7 +16,7 @@ cranelift-native = { path = "../cranelift-native", version = "0.29.0" } region = "2.0.0" libc = { version = "0.2.42" } errno = "0.2.4" -target-lexicon = { version = "0.2.0" } +target-lexicon = { version = "0.3.0" } [target.'cfg(target_os = "windows")'.dependencies] winapi = { version = "0.3", features = ["winbase", "memoryapi"] } diff --git a/cranelift/wasm/Cargo.toml b/cranelift/wasm/Cargo.toml index 9be8c2a9aa..0462fc8a68 100644 --- a/cranelift/wasm/Cargo.toml +++ b/cranelift/wasm/Cargo.toml @@ -23,7 +23,7 @@ cast = { version = "0.2.2", default-features = false } [dev-dependencies] wabt = "0.7.0" -target-lexicon = "0.2.0" +target-lexicon = "0.3.0" [features] default = ["std"]