Skip to content

Commit 516fb0b

Browse files
authored
Merge pull request #11 from dhil/wasmfx-merge
Merge with upstream
2 parents 1f03a77 + 024c269 commit 516fb0b

File tree

12 files changed

+322
-253
lines changed

12 files changed

+322
-253
lines changed

Cargo.lock

Lines changed: 55 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ resolver = "2"
1818

1919
[workspace.package]
2020
edition = "2021"
21-
version = "0.24.0"
21+
version = "0.25.0"
2222

2323
[workspace.dependencies]
2424
anyhow = "1.0.72"
@@ -28,20 +28,20 @@ pulldown-cmark = { version = "0.9", default-features = false }
2828
clap = { version = "4.3.19", features = ["derive"] }
2929
indexmap = "2.0.0"
3030

31-
wasmparser = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.206.0" }
32-
wasm-metadata = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.206.0" }
33-
wasm-encoder = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.206.0" }
34-
wit-parser = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.206.0" }
35-
wit-component = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.206.0" }
31+
wasmparser = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.208.1" }
32+
wasm-metadata = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.208.1" }
33+
wasm-encoder = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.208.1" }
34+
wit-parser = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.208.1" }
35+
wit-component = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.208.1" }
3636

37-
wit-bindgen-core = { path = 'crates/core', version = '0.24.0' }
38-
wit-bindgen-c = { path = 'crates/c', version = '0.24.0' }
39-
wit-bindgen-rust = { path = "crates/rust", version = "0.24.0" }
40-
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.24.0' }
41-
wit-bindgen-go = { path = 'crates/go', version = '0.24.0' }
42-
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.24.0' }
43-
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.24.0' }
44-
wit-bindgen = { path = 'crates/guest-rust', version = '0.24.0', default-features = false }
37+
wit-bindgen-core = { path = 'crates/core', version = '0.25.0' }
38+
wit-bindgen-c = { path = 'crates/c', version = '0.25.0' }
39+
wit-bindgen-rust = { path = "crates/rust", version = "0.25.0" }
40+
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.25.0' }
41+
wit-bindgen-go = { path = 'crates/go', version = '0.25.0' }
42+
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.25.0' }
43+
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.25.0' }
44+
wit-bindgen = { path = 'crates/guest-rust', version = '0.25.0', default-features = false }
4545

4646
[[bin]]
4747
name = "wit-bindgen"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ world my-game {
9292

9393
Here the `my-plugin-api` interface encapsulates a group of functions, types,
9494
etc. This can then be imported wholesale into the `my-game` world via the
95-
`plugin` namespace. The structure of a [WIT] document and world will affect the
95+
`my-plugin-api` namespace. The structure of a [WIT] document and world will affect the
9696
generated bindings per-language.
9797

9898
For more information about WIT and its syntax see the [online documentation for

0 commit comments

Comments
 (0)