Skip to content

Commit

Permalink
Update wasm-tools crates (#8580)
Browse files Browse the repository at this point in the history
* Update wasm-tools crates

Pulls in a no_std fix for wasmparser

* Add validate feature

* Add validate feature

* Fix features for cranelift-wasm
  • Loading branch information
alexcrichton authored May 8, 2024
1 parent d89e2b3 commit 7f699b8
Show file tree
Hide file tree
Showing 12 changed files with 133 additions and 78 deletions.
110 changes: 55 additions & 55 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -231,15 +231,15 @@ rustix = "0.38.31"
wit-bindgen = { version = "0.22.0", default-features = false }

# wasm-tools family:
wasmparser = { version = "0.206.0", default-features = false }
wat = "1.206.0"
wast = "206.0.0"
wasmprinter = "0.206.0"
wasm-encoder = "0.206.0"
wasm-smith = "0.206.0"
wasm-mutate = "0.206.0"
wit-parser = "0.206.0"
wit-component = "0.206.0"
wasmparser = { version = "0.207.0", default-features = false }
wat = "1.207.0"
wast = "207.0.0"
wasmprinter = "0.207.0"
wasm-encoder = "0.207.0"
wasm-smith = "0.207.0"
wasm-mutate = "0.207.0"
wit-parser = "0.207.0"
wit-component = "0.207.0"

# Non-Bytecode Alliance maintained dependencies:
# --------------------------
Expand Down
2 changes: 1 addition & 1 deletion cranelift/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ edition.workspace = true
workspace = true

[dependencies]
wasmparser = { workspace = true }
wasmparser = { workspace = true, features = ['validate'] }
cranelift-codegen = { workspace = true }
cranelift-entity = { workspace = true }
cranelift-frontend = { workspace = true }
Expand Down
Loading

0 comments on commit 7f699b8

Please sign in to comment.