Update dependency versions.

This commit is contained in:
Dan Gohman
2018-07-13 16:31:20 -07:00
parent f833d25ad1
commit 8930cb1b5d
8 changed files with 10 additions and 10 deletions

View File

@@ -31,7 +31,7 @@ serde_derive = "1.0.8"
term = "0.5.1"
capstone = { version = "0.4", optional = true }
wabt = { version = "0.4", optional = true }
target-lexicon = "0.0.2"
target-lexicon = "0.0.3"
[features]
default = ["disas", "wasm"]

View File

@@ -12,7 +12,7 @@ cargo-fuzz = "*"
binaryen = { git = "https://github.com/pepyakin/binaryen-rs.git" }
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
cranelift-wasm = { path = "../lib/wasm" }
target-lexicon = "0.0.2"
target-lexicon = "0.0.3"
# Prevent this from interfering with workspaces
[workspace]

View File

@@ -15,7 +15,7 @@ cranelift-entity = { path = "../entity", version = "0.14.0", default-features =
failure = { version = "0.1.1", default-features = false, features = ["derive"] }
failure_derive = { version = "0.1.1", default-features = false }
hashmap_core = { version = "0.1.8", optional = true }
target-lexicon = { version = "0.0.2", default-features = false }
target-lexicon = { version = "0.0.3", 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
# machine code. Integration tests that need external dependencies can be

View File

@@ -14,7 +14,7 @@ cranelift-module = { path = "../module", version = "0.14.0" }
faerie = "0.4.2"
goblin = "0.0.15"
failure = "0.1.1"
target-lexicon = "0.0.2"
target-lexicon = "0.0.3"
[badges]
maintenance = { status = "experimental" }

View File

@@ -9,7 +9,7 @@ readme = "README.md"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.14.0", default-features = false }
target-lexicon = { version = "0.0.2", default-features = false }
target-lexicon = { version = "0.0.3", default-features = false }
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
# Due to https://github.com/gz/rust-cpuid/issues/27, stay at 3.x for now.

View File

@@ -10,7 +10,7 @@ readme = "README.md"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.14.0" }
target-lexicon = "0.0.2"
target-lexicon = "0.0.3"
[badges]
maintenance = { status = "experimental" }

View File

@@ -13,9 +13,9 @@ cranelift-codegen = { path = "../codegen", version = "0.14.0", default-features
cranelift-module = { path = "../module", version = "0.14.0", default-features = false }
cranelift-native = { path = "../native", version = "0.14.0", default-features = false }
region = "0.3.0"
libc = { version = "0.2.40", default-features = false }
errno = "0.2.3"
target-lexicon = { version = "0.0.2", default-features = false }
libc = { version = "0.2.42", default-features = false }
errno = "0.2.4"
target-lexicon = { version = "0.0.3", default-features = false }
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["winbase", "memoryapi"] }

View File

@@ -15,7 +15,7 @@ cranelift-frontend = { path = "../frontend", version = "0.14.0", default-feature
hashmap_core = { version = "0.1.8", optional = true }
failure = { version = "0.1.1", default-features = false, features = ["derive"] }
failure_derive = { version = "0.1.1", default-features = false }
target-lexicon = { version = "0.0.2", default-features = false }
target-lexicon = { version = "0.0.3", default-features = false }
[dev-dependencies]
wabt = "0.4"