Skip to content

Commit e32a150

Browse files
authored
Bump crate versions and update deps (#644)
Update to the latest publication of the `wasm-tools` family of crates.
1 parent 7356ded commit e32a150

File tree

11 files changed

+143
-180
lines changed

11 files changed

+143
-180
lines changed

Diff for: Cargo.lock

+121-153
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+12-17
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-cli"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition = { workspace = true }
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"
@@ -31,18 +31,18 @@ indexmap = "2.0.0"
3131

3232
wasm-encoder = "0.31.1"
3333
wasm-metadata = "0.10.1"
34-
wat = "1.0.69"
35-
wit-parser = "0.9.2"
36-
wit-component = "0.13.1"
34+
wat = "1.0.70"
35+
wit-parser = "0.10.0"
36+
wit-component = "0.13.2"
3737

38-
wit-bindgen-core = { path = 'crates/core', version = '0.9.0' }
39-
wit-bindgen-c = { path = 'crates/c', version = '0.9.0' }
40-
wit-bindgen-rust = { path = "crates/rust", version = "0.9.0" }
41-
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.9.0' }
42-
wit-bindgen-go = { path = 'crates/go', version = '0.7.0' }
43-
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.9.0' }
44-
wit-bindgen-rust-lib = { path = 'crates/rust-lib', version = '0.9.0' }
45-
wit-bindgen = { path = 'crates/guest-rust', version = '0.9.0', default-features = false }
38+
wit-bindgen-core = { path = 'crates/core', version = '0.10.0' }
39+
wit-bindgen-c = { path = 'crates/c', version = '0.10.0' }
40+
wit-bindgen-rust = { path = "crates/rust", version = "0.10.0" }
41+
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.10.0' }
42+
wit-bindgen-go = { path = 'crates/go', version = '0.8.0' }
43+
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.10.0' }
44+
wit-bindgen-rust-lib = { path = 'crates/rust-lib', version = '0.10.0' }
45+
wit-bindgen = { path = 'crates/guest-rust', version = '0.10.0', default-features = false }
4646
wit-bindgen-rust-macro-shared = { path = 'crates/rust-macro-shared', version = '0.3.0' }
4747

4848
[[bin]]
@@ -80,8 +80,3 @@ heck = { workspace = true }
8080
wasmtime = { version = "11", features = ['component-model'] }
8181
test-artifacts = { path = 'crates/test-rust-wasm/artifacts' }
8282
wit-parser = { workspace = true }
83-
84-
[patch.crates-io]
85-
wit-parser = { git = 'https://github.com/bytecodealliance/wasm-tools' }
86-
wit-component = { git = 'https://github.com/bytecodealliance/wasm-tools' }
87-
wasm-metadata = { git = 'https://github.com/bytecodealliance/wasm-tools' }

Diff for: crates/c/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-c"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-core"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/go/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-go"
33
authors = ["Mossaka <duibao55328@gmail.com>"]
4-
version = "0.7.0"
4+
version = "0.8.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/guest-rust/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"
@@ -12,7 +12,7 @@ Used when compiling Rust programs to the component model.
1212
"""
1313

1414
[dependencies]
15-
wit-bindgen-rust-macro = { path = "../rust-macro", optional = true, version = "0.9.0" }
15+
wit-bindgen-rust-macro = { path = "../rust-macro", optional = true, version = "0.10.0" }
1616
bitflags = { workspace = true }
1717

1818
[features]

Diff for: crates/markdown/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wit-bindgen-markdown"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition.workspace = true
55
repository = 'https://github.com/bytecodealliance/wit-bindgen'
66
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/rust-lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-rust-lib"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/rust-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-rust-macro"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-rust"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/teavm-java/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wit-bindgen-teavm-java"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition.workspace = true
55
repository = 'https://github.com/bytecodealliance/wit-bindgen'
66
license = "Apache-2.0 WITH LLVM-exception"

0 commit comments

Comments
 (0)