Update faerie to 0.9.1

This commit is contained in:
bjorn3
2019-03-07 19:02:24 +01:00
committed by Benjamin Bouvier
parent 34aba7fe66
commit 75312a6456
9 changed files with 10 additions and 10 deletions

View File

@@ -38,7 +38,7 @@ serde = "1.0.8"
term = "0.5.1" term = "0.5.1"
capstone = { version = "0.5.0", optional = true } capstone = { version = "0.5.0", optional = true }
wabt = { version = "0.7.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" pretty_env_logger = "0.3.0"
file-per-thread-logger = "0.1.2" file-per-thread-logger = "0.1.2"

View File

@@ -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 = { 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 = { version = "0.2.0", default-features = false } target-lexicon = { version = "0.3.0", default-features = false }
log = { version = "0.4.6", 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. # 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 # Please don't add any unless they are essential to the task of creating binary

View File

@@ -12,10 +12,10 @@ edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.29.0" } cranelift-codegen = { path = "../cranelift-codegen", version = "0.29.0" }
cranelift-module = { path = "../cranelift-module", 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" goblin = "0.0.21"
failure = "0.1.2" failure = "0.1.2"
target-lexicon = "0.2.0" target-lexicon = "0.3.0"
[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.29.0", default-features = false } 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 } 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.2.0" target-lexicon = "0.3.0"
# 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.29.0", default-features = false } 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] [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.29.0" } cranelift-codegen = { path = "../cranelift-codegen", version = "0.29.0" }
target-lexicon = "0.2.0" target-lexicon = "0.3.0"
[badges] [badges]
maintenance = { status = "experimental" } maintenance = { status = "experimental" }

View File

@@ -16,7 +16,7 @@ cranelift-native = { path = "../cranelift-native", version = "0.29.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 = { version = "0.2.0" } target-lexicon = { version = "0.3.0" }
[target.'cfg(target_os = "windows")'.dependencies] [target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["winbase", "memoryapi"] } winapi = { version = "0.3", features = ["winbase", "memoryapi"] }

View File

@@ -23,7 +23,7 @@ cast = { version = "0.2.2", default-features = false }
[dev-dependencies] [dev-dependencies]
wabt = "0.7.0" wabt = "0.7.0"
target-lexicon = "0.2.0" target-lexicon = "0.3.0"
[features] [features]
default = ["std"] default = ["std"]