upgrade to latest target-lexicon 0.8.1

this fixes the compile for arm and aarch64

reported via https://github.com/CraneStation/cranelift/issues/977
This commit is contained in:
stefson
2019-09-06 12:16:22 +02:00
committed by Benjamin Bouvier
parent d858ebb4aa
commit bafd79330d
9 changed files with 9 additions and 9 deletions

View File

@@ -38,7 +38,7 @@ serde = "1.0.8"
term = "0.6.1" term = "0.6.1"
capstone = { version = "0.6.0", optional = true } capstone = { version = "0.6.0", optional = true }
wabt = { version = "0.9.1", optional = true } wabt = { version = "0.9.1", optional = true }
target-lexicon = "0.8.0" target-lexicon = "0.8.1"
pretty_env_logger = "0.3.0" pretty_env_logger = "0.3.0"
file-per-thread-logger = "0.1.2" file-per-thread-logger = "0.1.2"
indicatif = "0.11.0" indicatif = "0.11.0"

View File

@@ -18,7 +18,7 @@ cranelift-bforest = { path = "../cranelift-bforest", version = "0.42.0", default
failure = { version = "0.1.1", default-features = false, features = ["derive"] } failure = { version = "0.1.1", default-features = false, features = ["derive"] }
failure_derive = { version = "0.1.1", default-features = false } failure_derive = { version = "0.1.1", default-features = false }
hashmap_core = { version = "0.1.9", optional = true } hashmap_core = { version = "0.1.9", optional = true }
target-lexicon = "0.8.0" target-lexicon = "0.8.1"
log = { version = "0.4.6", default-features = false } log = { version = "0.4.6", default-features = false }
serde = { version = "1.0.94", features = ["derive"], optional = true } serde = { version = "1.0.94", features = ["derive"], optional = true }
# It is a goal of the cranelift-codegen crate to have minimal external dependencies. # It is a goal of the cranelift-codegen crate to have minimal external dependencies.

View File

@@ -15,7 +15,7 @@ cranelift-module = { path = "../cranelift-module", version = "0.42.0" }
faerie = "0.11.0" faerie = "0.11.0"
goblin = "0.0.24" goblin = "0.0.24"
failure = "0.1.2" failure = "0.1.2"
target-lexicon = "0.8.0" target-lexicon = "0.8.1"
[badges] [badges]
maintenance = { status = "experimental" } maintenance = { status = "experimental" }

View File

@@ -12,7 +12,7 @@ edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.42.0", default-features = false } cranelift-codegen = { path = "../cranelift-codegen", version = "0.42.0", default-features = false }
target-lexicon = "0.8.0" target-lexicon = "0.8.1"
log = { version = "0.4.6", default-features = false } log = { version = "0.4.6", default-features = false }
hashmap_core = { version = "0.1.9", optional = true } hashmap_core = { version = "0.1.9", optional = true }

View File

@@ -15,7 +15,7 @@ libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
cranelift-codegen = { path = "../cranelift-codegen" } cranelift-codegen = { path = "../cranelift-codegen" }
cranelift-wasm = { path = "../cranelift-wasm" } cranelift-wasm = { path = "../cranelift-wasm" }
cranelift-reader = { path = "../cranelift-reader" } cranelift-reader = { path = "../cranelift-reader" }
target-lexicon = "0.8.0" target-lexicon = "0.8.1"
# Prevent this from interfering with workspaces # Prevent this from interfering with workspaces
[workspace] [workspace]

View File

@@ -11,7 +11,7 @@ edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.42.0", default-features = false } cranelift-codegen = { path = "../cranelift-codegen", version = "0.42.0", default-features = false }
target-lexicon = "0.8.0" target-lexicon = "0.8.1"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies] [target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
raw-cpuid = "6.0.0" raw-cpuid = "6.0.0"

View File

@@ -11,7 +11,7 @@ edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.42.0" } cranelift-codegen = { path = "../cranelift-codegen", version = "0.42.0" }
target-lexicon = "0.8.0" target-lexicon = "0.8.1"
[badges] [badges]
maintenance = { status = "experimental" } maintenance = { status = "experimental" }

View File

@@ -16,7 +16,7 @@ cranelift-native = { path = "../cranelift-native", version = "0.42.0" }
region = "2.0.0" region = "2.0.0"
libc = { version = "0.2.42" } libc = { version = "0.2.42" }
errno = "0.2.4" errno = "0.2.4"
target-lexicon = "0.8.0" target-lexicon = "0.8.1"
memmap = { version = "0.7.0", optional = true } memmap = { version = "0.7.0", optional = true }
[target.'cfg(target_os = "windows")'.dependencies] [target.'cfg(target_os = "windows")'.dependencies]

View File

@@ -23,7 +23,7 @@ serde = { version = "1.0.94", features = ["derive"], optional = true }
[dev-dependencies] [dev-dependencies]
wabt = "0.9.1" wabt = "0.9.1"
target-lexicon = "0.8.0" target-lexicon = "0.8.1"
[features] [features]
default = ["std"] default = ["std"]