Skip to content

Commit

Permalink
Update wasm-tools dependencies (#810)
Browse files Browse the repository at this point in the history
* Update wasm-tools dependencies

* Try to fix test
  • Loading branch information
alexcrichton authored Jan 9, 2024
1 parent 1abbfe7 commit ef3b2dc
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 36 deletions.
82 changes: 51 additions & 31 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ clap = { version = "4.3.19", features = ["derive"] }
env_logger = "0.10.0"
indexmap = "2.0.0"

wasm-encoder = "0.38.1"
wasm-metadata = "0.10.14"
wit-parser = "0.13.0"
wit-component = "0.19.0"
wasm-encoder = "0.39.0"
wasm-metadata = "0.10.15"
wit-parser = "0.13.1"
wit-component = "0.19.1"

wit-bindgen-core = { path = 'crates/core', version = '0.16.0' }
wit-bindgen-c = { path = 'crates/c', version = '0.16.0' }
Expand Down
2 changes: 1 addition & 1 deletion tests/runtime/records/world.wit
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ interface test {
}

roundtrip-flags3: func(a: flag8, b: flag16, c: flag32, d: flag64) ->
(f8: flag8, f16: flag16, f32: flag32, f64: flag64);
(f8: flag8, f16: flag16, %f32: flag32, %f64: flag64);

record r1 { a: u8, b: f1 }
roundtrip-record1: func(a: r1) -> r1;
Expand Down

0 comments on commit ef3b2dc

Please sign in to comment.