Skip to content

Commit

Permalink
bumps various versions (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
kritzcreek authored Oct 4, 2024
1 parent 3c2c9af commit 1cdce7b
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 52 deletions.
105 changes: 60 additions & 45 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ license = "MIT"

[dependencies]
text-size = "1.1.1"
wasm-encoder = "0.217"
wasm-encoder = "0.218"
frontend = { path = "../frontend" }
camino = "1.1.9"
6 changes: 3 additions & 3 deletions crates/backend/src/wasm_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ impl<'a> Builder<'a> {

// I remember this didn't work on some more complicated programs
// but it passes for all the current example programs. Keep an eye on it
type_section.rec(self.types);
type_section.ty().rec(self.types);
// for ty in self.types {
// type_section.subtype(&ty);
// }
Expand Down Expand Up @@ -249,8 +249,8 @@ impl<'a> Builder<'a> {
.map(|function_index| StartSection { function_index });
// elem_section
let mut elem_section = ElementSection::new();
elem_section.declared(Elements::Functions(&import_indices));
elem_section.declared(Elements::Functions(&function_indices));
elem_section.declared(Elements::Functions(import_indices.into()));
elem_section.declared(Elements::Functions(function_indices.into()));

// code_section
let mut code_section = CodeSection::new();
Expand Down
4 changes: 2 additions & 2 deletions crates/frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ license = "MIT"
[dependencies]
ariadne = "0.4.1"
yansi = "1"
logos = "0.14.0"
logos = "0.14.2"
num-derive = "0.4.2"
num-traits = "0.2.18"
rowan = "0.15.15"
rowan = "0.15.16"
text-size = "1.1.1"
line-index = "0.1.1"
lexpr = "0.2.7"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ crate-type = ["cdylib"]
frontend = { path = "../frontend" }
backend = { path = "../backend" }
wasm-bindgen = "0.2.93"
wasmprinter = "0.217"
wasmprinter = "0.218"
console_error_panic_hook = "0.1.7"
camino = "1.1.9"

0 comments on commit 1cdce7b

Please sign in to comment.