Switching from git back to released versions for wasmtime, fix cargo-unleash (#6722)

* Switching from git back to released versions for wasmtime

* filter out cratelift_codegen messages-a

Co-authored-by: NikVolf <nikvolf@gmail.com>
This commit is contained in:
Benjamin Kampmann
2020-07-24 16:45:20 +02:00
committed by GitHub
parent 68b2a09d21
commit d9df1716da
3 changed files with 38 additions and 22 deletions
@@ -21,11 +21,11 @@ sp-wasm-interface = { version = "2.0.0-rc5", path = "../../../primitives/wasm-in
sp-runtime-interface = { version = "2.0.0-rc5", path = "../../../primitives/runtime-interface" }
sp-core = { version = "2.0.0-rc5", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0-rc5", path = "../../../primitives/allocator" }
wasmtime = { package = "substrate-wasmtime", git = "https://github.com/paritytech/wasmtime", branch = "update-upstream" }
wasmtime-runtime = { git = "https://github.com/paritytech/wasmtime", branch = "update-upstream" }
wasmtime-environ = { git = "https://github.com/paritytech/wasmtime", branch = "update-upstream" }
cranelift-wasm = { git = "https://github.com/paritytech/wasmtime", branch = "update-upstream" }
cranelift-codegen = { git = "https://github.com/paritytech/wasmtime", branch = "update-upstream" }
wasmtime = { package = "substrate-wasmtime", version = "0.19.0" }
wasmtime-runtime = { version = "0.19.0" }
wasmtime-environ = { version = "0.19.0" }
cranelift-wasm = { version = "0.66.0" }
cranelift-codegen = { version = "0.66.0" }
[dev-dependencies]