Bump Cranelift to 0.49.0 and target-lexicon to 0.9.0. (#499)

This commit bumps Cranelift to 0.49.0 and target-lexicon to 0.9.0 to fix the
failing build to due an updated faerie crate that violated semver with an
updated 0.9.0 target-lexicon dependency.

Fixes #491.
This commit is contained in:
Peter Huene
2019-11-06 15:30:54 -08:00
committed by Dan Gohman
parent a8afdff972
commit ab80785c05
16 changed files with 58 additions and 58 deletions

View File

@@ -12,9 +12,9 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = { version = "0.47", features = ["enable-serde"] }
cranelift-entity = { version = "0.47", features = ["enable-serde"] }
cranelift-wasm = { version = "0.47", features = ["enable-serde"] }
cranelift-codegen = { version = "0.49", features = ["enable-serde"] }
cranelift-entity = { version = "0.49", features = ["enable-serde"] }
cranelift-wasm = { version = "0.49", features = ["enable-serde"] }
lightbeam = { path = "../lightbeam", optional = true }
indexmap = "1.0.2"
rayon = "1.1"
@@ -40,10 +40,10 @@ errno = "0.2.4"
[dev-dependencies]
tempfile = "3"
target-lexicon = { version = "0.8.1", default-features = false }
target-lexicon = { version = "0.9.0", default-features = false }
pretty_env_logger = "0.3.0"
rand = { version = "0.7.0", features = ["small_rng"] }
cranelift-codegen = { version = "0.47", features = ["enable-serde", "all-arch"] }
cranelift-codegen = { version = "0.49", features = ["enable-serde", "all-arch"] }
filetime = "0.2.7"
[features]