Skip to content

Commit

Permalink
Update to Wasmtime 12, bump to 12.0.0 (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton authored Aug 21, 2023
1 parent 9c91bb9 commit 38a7b1f
Show file tree
Hide file tree
Showing 8 changed files with 126 additions and 137 deletions.
2 changes: 1 addition & 1 deletion ci/download-wasmtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import urllib.request
import zipfile

WASMTIME_VERSION = "v11.0.0"
WASMTIME_VERSION = "v12.0.0"


def main(platform, arch):
Expand Down
129 changes: 55 additions & 74 deletions rust/Cargo.lock

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

3 changes: 2 additions & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
members = ['bindgen', 'wasi_snapshot_preview1']

[workspace.dependencies]
wit-bindgen = { version = "0.9.0", default-features = false, features = ['macros'] }
wit-bindgen = { version = "0.10.0", default-features = false, features = ['macros'] }
wit-bindgen-core = "0.10.0"

[profile.release]
strip = 'debuginfo'
9 changes: 5 additions & 4 deletions rust/bindgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ crate-type = ['cdylib', 'rlib']
[dependencies]
anyhow = "1.0"
heck = { version = "0.4", features = ["unicode"] }
wit-parser = "0.9.1"
wit-component = "0.12.0"
indexmap = "1.0"
wasmtime-environ = { version = "11.0.0", features = ['component-model'] }
wit-parser = "0.10.0"
wit-component = "0.13.2"
indexmap = "2.0"
wasmtime-environ = { version = "12.0.0", features = ['component-model'] }
wit-bindgen = { workspace = true, features = ['default'] }
wit-bindgen-core = { workspace = true }

[features]
cli = []
Expand Down
Loading

0 comments on commit 38a7b1f

Please sign in to comment.