Skip to content

Commit 680f786

Browse files
authored
Merge branch 'bytecodealliance:main' into main
2 parents 525d273 + d1387cc commit 680f786

File tree

18 files changed

+418
-159
lines changed

18 files changed

+418
-159
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 11 additions & 11 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.35.0"
21+
version = "0.36.0"
2222
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
2323
repository = "https://github.com/bytecodealliance/wasi-rs"
2424

@@ -30,23 +30,23 @@ pulldown-cmark = { version = "0.9", default-features = false }
3030
clap = { version = "4.3.19", features = ["derive"] }
3131
indexmap = "2.0.0"
3232
prettyplease = "0.2.20"
33-
syn = { version = "2.0", features = ["printing"] }
33+
syn = { version = "2.0.89", features = ["printing"] }
3434

3535
wasmparser = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.220.0" }
3636
wasm-metadata = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.220.0" }
3737
wasm-encoder = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.220.0" }
3838
wit-parser = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.220.0" }
3939
wit-component = { git = "https://github.com/wasmfx/wasmfx-tools", tag = "v1.220.0" }
4040

41-
wit-bindgen-core = { path = 'crates/core', version = '0.35.0' }
42-
wit-bindgen-c = { path = 'crates/c', version = '0.35.0' }
43-
wit-bindgen-rust = { path = "crates/rust", version = "0.35.0" }
44-
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.35.0' }
45-
wit-bindgen-go = { path = 'crates/go', version = '0.35.0' }
46-
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.35.0' }
47-
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.35.0' }
48-
wit-bindgen-moonbit = { path = 'crates/moonbit', version = '0.35.0' }
49-
wit-bindgen = { path = 'crates/guest-rust', version = '0.35.0', default-features = false }
41+
wit-bindgen-core = { path = 'crates/core', version = '0.36.0' }
42+
wit-bindgen-c = { path = 'crates/c', version = '0.36.0' }
43+
wit-bindgen-rust = { path = "crates/rust", version = "0.36.0" }
44+
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.36.0' }
45+
wit-bindgen-go = { path = 'crates/go', version = '0.36.0' }
46+
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.36.0' }
47+
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.36.0' }
48+
wit-bindgen-moonbit = { path = 'crates/moonbit', version = '0.36.0' }
49+
wit-bindgen = { path = 'crates/guest-rust', version = '0.36.0', default-features = false }
5050

5151
[[bin]]
5252
name = "wit-bindgen"

crates/csharp/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ doctest = false
1616
test = false
1717

1818
[dependencies]
19-
wasm-encoder = { workspace = true }
2019
wit-bindgen-core = { workspace = true }
2120
wit-component = { workspace = true }
2221
wit-parser = { workspace = true }

crates/csharp/src/csproj.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ impl CSProjectLLVMBuilder {
9292
csproj.push_str(
9393
r#"
9494
<ItemGroup>
95-
<PackageReference Include="Microsoft.DotNet.ILCompiler.LLVM" Version="9.0.0-rc.1.24412.1" />
96-
<PackageReference Include="runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM" Version="9.0.0-rc.1.24412.1" />
95+
<PackageReference Include="Microsoft.DotNet.ILCompiler.LLVM" Version="10.0.0-*" />
96+
<PackageReference Include="runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM" Version="10.0.0-*" />
9797
</ItemGroup>
9898
"#,
9999
);

0 commit comments

Comments
 (0)