Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update wit-bindgen to 0.19.1 #73

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ jobs:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable && rustup default stable
- run: cargo install wit-bindgen-cli@0.16.0
- run: cargo install wit-bindgen-cli@0.19.1
- run: ./ci/regenerate.sh
- run: git diff --exit-code
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasi"
version = "0.12.0+wasi-0.2.0"
version = "0.12.1+wasi-0.2.0"
authors = ["The Cranelift Project Developers"]
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
description = "WASI API bindings for Rust"
Expand All @@ -12,7 +12,7 @@ readme = "README.md"
documentation = "https://docs.rs/wasi"

[dependencies]
wit-bindgen = { version = "0.16", default-features = false, features = ['realloc'] }
wit-bindgen = { version = "0.19.1", default-features = false, features = ['realloc'] }

# When built as part of libstd
compiler_builtins = { version = "0.1", optional = true }
Expand Down
Loading