Browse Source

Update to Cranelift 1.33 and require Rust 1.35.

Cranelift requires Rust 1.35; update accordingly.
pull/184/head
Dan Gohman 5 years ago
parent
commit
1a10f4a002
  1. 2
      .travis.yml
  2. 4
      Cargo.toml
  3. 2
      README.md
  4. 6
      fuzz/Cargo.toml
  5. 6
      wasmtime-debug/Cargo.toml
  6. 6
      wasmtime-environ/Cargo.toml
  7. 8
      wasmtime-jit/Cargo.toml
  8. 6
      wasmtime-obj/Cargo.toml
  9. 6
      wasmtime-runtime/Cargo.toml
  10. 6
      wasmtime-wasi-c/Cargo.toml
  11. 6
      wasmtime-wasi/Cargo.toml
  12. 8
      wasmtime-wast/Cargo.toml

2
.travis.yml

@ -5,7 +5,7 @@ os:
- osx
language: rust
rust:
- 1.34.0
- 1.35.0
- beta
- nightly
matrix:

4
Cargo.toml

@ -22,8 +22,8 @@ name = "wasm2obj"
path = "src/wasm2obj.rs"
[dependencies]
cranelift-codegen = "0.32.0"
cranelift-native = "0.32.0"
cranelift-codegen = "0.33.0"
cranelift-native = "0.33.0"
wasmtime-debug = { path = "wasmtime-debug" }
wasmtime-environ = { path = "wasmtime-environ" }
wasmtime-runtime = { path = "wasmtime-runtime" }

2
README.md

@ -12,7 +12,7 @@ utility or as a library embedded in a larger application.
[![Travis Status](https://travis-ci.org/CraneStation/wasmtime.svg?branch=master)](https://travis-ci.org/CraneStation/wasmtime)
[![Appveyor Status](https://ci.appveyor.com/api/projects/status/vxvpt2plriy5s0mc?svg=true)](https://ci.appveyor.com/project/CraneStation/cranelift)
[![Gitter chat](https://badges.gitter.im/CraneStation/CraneStation.svg)](https://gitter.im/CraneStation/Lobby)
![Minimum rustc 1.34](https://img.shields.io/badge/rustc-1.34+-green.svg)
![Minimum rustc 1.35](https://img.shields.io/badge/rustc-1.35+-green.svg)
Wasmtime passes the WebAssembly spec testsuite, and supports a new system
API proposal called [WebAssembly System Interface], or WASI.

6
fuzz/Cargo.toml

@ -11,9 +11,9 @@ cargo-fuzz = true
[dependencies]
wasmtime-environ = { path = "../wasmtime-environ" }
wasmtime-jit = { path = "../wasmtime-jit" }
cranelift-codegen = "0.32.0"
cranelift-wasm = "0.32.0"
cranelift-native = "0.32.0"
cranelift-codegen = "0.33.0"
cranelift-wasm = "0.33.0"
cranelift-native = "0.33.0"
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
wasmparser = { version = "0.32.1", default-features = false }
binaryen = "0.5.0"

6
wasmtime-debug/Cargo.toml

@ -14,9 +14,9 @@ edition = "2018"
[dependencies]
gimli = "0.17.0"
wasmparser = { version = "0.32.1" }
cranelift-codegen = "0.32.0"
cranelift-entity = "0.32.0"
cranelift-wasm = "0.32.0"
cranelift-codegen = "0.33.0"
cranelift-entity = "0.33.0"
cranelift-wasm = "0.33.0"
faerie = "0.10.1"
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
target-lexicon = { version = "0.4.0", default-features = false }

6
wasmtime-environ/Cargo.toml

@ -12,9 +12,9 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = "0.32.0"
cranelift-entity = "0.32.0"
cranelift-wasm = "0.32.0"
cranelift-codegen = "0.33.0"
cranelift-entity = "0.33.0"
cranelift-wasm = "0.33.0"
lightbeam = { path = "../lightbeam", optional = true }
failure = { version = "0.1.3", default-features = false }
failure_derive = { version = "0.1.3", default-features = false }

8
wasmtime-jit/Cargo.toml

@ -12,10 +12,10 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = "0.32.0"
cranelift-entity = "0.32.0"
cranelift-wasm = "0.32.0"
cranelift-frontend = "0.32.0"
cranelift-codegen = "0.33.0"
cranelift-entity = "0.33.0"
cranelift-wasm = "0.33.0"
cranelift-frontend = "0.33.0"
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
wasmtime-runtime = { path = "../wasmtime-runtime", default-features = false }
wasmtime-debug = { path = "../wasmtime-debug", default-features = false }

6
wasmtime-obj/Cargo.toml

@ -12,8 +12,8 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = "0.32.0"
cranelift-entity = "0.32.0"
cranelift-wasm = "0.32.0"
cranelift-codegen = "0.33.0"
cranelift-entity = "0.33.0"
cranelift-wasm = "0.33.0"
wasmtime-environ = { path = "../wasmtime-environ" }
faerie = "0.10.1"

6
wasmtime-runtime/Cargo.toml

@ -12,9 +12,9 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = "0.32.0"
cranelift-entity = "0.32.0"
cranelift-wasm = "0.32.0"
cranelift-codegen = "0.33.0"
cranelift-entity = "0.33.0"
cranelift-wasm = "0.33.0"
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
region = "2.0.0"
lazy_static = "1.2.0"

6
wasmtime-wasi-c/Cargo.toml

@ -13,9 +13,9 @@ readme = "README.md"
wasmtime-runtime = { path = "../wasmtime-runtime" }
wasmtime-environ = { path = "../wasmtime-environ" }
wasmtime-jit = { path = "../wasmtime-jit" }
cranelift-codegen = "0.32.0"
cranelift-entity = "0.32.0"
cranelift-wasm = "0.32.0"
cranelift-codegen = "0.33.0"
cranelift-entity = "0.33.0"
cranelift-wasm = "0.33.0"
target-lexicon = "0.4.0"
log = { version = "0.4.6", default-features = false }
libc = "0.2.50"

6
wasmtime-wasi/Cargo.toml

@ -14,9 +14,9 @@ wasmtime-runtime = { path = "../wasmtime-runtime" }
wasmtime-environ = { path = "../wasmtime-environ" }
wasmtime-jit = { path = "../wasmtime-jit" }
wasi-common = { git = "https://github.com/CraneStation/wasi-common" }
cranelift-codegen = "0.32.0"
cranelift-entity = "0.32.0"
cranelift-wasm = "0.32.0"
cranelift-codegen = "0.33.0"
cranelift-entity = "0.33.0"
cranelift-wasm = "0.33.0"
target-lexicon = "0.4.0"
log = { version = "0.4.6", default-features = false }

8
wasmtime-wast/Cargo.toml

@ -12,10 +12,10 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = "0.32.0"
cranelift-native = "0.32.0"
cranelift-wasm = "0.32.0"
cranelift-entity = "0.32.0"
cranelift-codegen = "0.33.0"
cranelift-native = "0.33.0"
cranelift-wasm = "0.33.0"
cranelift-entity = "0.33.0"
wasmtime-jit = { path = "../wasmtime-jit" }
wasmtime-runtime = { path = "../wasmtime-runtime" }
wasmtime-environ = { path = "../wasmtime-environ" }

Loading…
Cancel
Save