Update cranelift, faerie, target-lexicon and wasmparser deps

This commit is contained in:
Yury Delendik
2019-07-01 16:17:20 -05:00
committed by Dan Gohman
parent e3c021cc59
commit fb9d6061e4
13 changed files with 72 additions and 59 deletions

View File

@@ -13,13 +13,13 @@ edition = "2018"
[dependencies]
gimli = "0.17.0"
wasmparser = { version = "0.29.0" }
cranelift-codegen = "0.30.0"
cranelift-entity = "0.30.0"
cranelift-wasm = "0.30.0"
faerie = "0.9.1"
wasmparser = { version = "0.32.1" }
cranelift-codegen = "0.32.0"
cranelift-entity = "0.32.0"
cranelift-wasm = "0.32.0"
faerie = "0.10.1"
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
target-lexicon = { version = "0.3.0", default-features = false }
target-lexicon = { version = "0.4.0", default-features = false }
failure = { version = "0.1.3", default-features = false }
failure_derive = { version = "0.1.3", default-features = false }

View File

@@ -6,7 +6,7 @@ use gimli::write::{
};
use gimli::RunTimeEndian;
use faerie::artifact::Decl;
use faerie::artifact::{Decl, SectionKind};
use faerie::*;
struct DebugReloc {
@@ -21,7 +21,7 @@ macro_rules! decl_section {
$artifact
.declare_with(
SectionId::$section.name(),
Decl::debug_section(),
Decl::section(SectionKind::Debug),
$name.0.writer.into_vec(),
)
.unwrap();