Fix compilation and support on 32-bit targets

This commit is contained in:
Alex Crichton 2018-04-17 11:42:10 -07:00
parent f80a7067a0
commit 9a6a15f605
2 changed files with 4 additions and 1 deletions

View File

@ -39,3 +39,6 @@ members = [
lto = true
opt-level = 's'
panic = 'abort'
[patch.crates-io]
parity-wasm = { git = 'https://github.com/alexcrichton/parity-wasm', branch = 'fix-overflow' }

View File

@ -16,4 +16,4 @@ parity-wasm = "0.27"
serde_json = "1.0"
wasm-bindgen-shared = { path = "../shared", version = '=0.2.2' }
wasm-gc-api = "0.1"
wasmi = "0.1"
wasmi = { version = "0.1", features = ["opt-in-32bit"] }