diff --git a/.travis.yml b/.travis.yml index 46c9de1..ab78915 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,15 +11,13 @@ addons: sources: - ubuntu-toolchain-r-test packages: - - gcc-6 - - g++-6 + - gcc-8 + - g++-8 - cmake env: -- CC=/usr/bin/gcc-6 CXX=/usr/bin/g++-6 +- CC=/usr/bin/gcc-8 CXX=/usr/bin/g++-8 install: -# Install `cargo-deadlinks` unless it is currently installed. -- command -v cargo-deadlinks &> /dev/null || cargo install --git https://github.com/deadlinks/cargo-deadlinks/ - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then rustup target add wasm32-unknown-unknown; fi script: # Make sure nightly targets are not broken. diff --git a/Cargo.toml b/Cargo.toml index 2c05e50..e95ad17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,4 +18,4 @@ nan-preserving-float = "0.1.0" [dev-dependencies] assert_matches = "1.1" -wabt = "0.4" +wabt = "0.6" diff --git a/benches/Cargo.toml b/benches/Cargo.toml index f3d3fe8..de60346 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Sergey Pepyakin "] [dependencies] wasmi = { path = ".." } assert_matches = "1.2" -wabt = "0.3" +wabt = "0.6" [profile.bench] debug = true diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 1dd173d..4431140 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -10,7 +10,7 @@ cargo-fuzz = true [dependencies] wasmi = { path = ".." } -wabt = "0.2.0" +wabt = "0.6.0" wasmparser = "0.14.1" tempdir = "0.3.6" diff --git a/hfuzz/Cargo.toml b/hfuzz/Cargo.toml index 473364f..266b767 100644 --- a/hfuzz/Cargo.toml +++ b/hfuzz/Cargo.toml @@ -7,4 +7,4 @@ authors = ["Sergey Pepyakin "] honggfuzz = "=0.5.9" # Strict equal since hfuzz requires dep and cmd versions to match. wasmi = { path = ".." } tempdir = "0.3.6" -wabt = "0.2.0" +wabt = "0.6.0"