Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rustwasm/wasm-bindgen
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: 71/wasm-bindgen
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: source-maps
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 2 commits
  • 8 files changed
  • 1 contributor

Commits on Feb 15, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c289473 View commit details
  2. Copy the full SHA
    f6b20b5 View commit details
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -100,3 +100,6 @@ wasm-bindgen = { path = '.' }
wasm-bindgen-futures = { path = 'crates/futures' }
js-sys = { path = 'crates/js-sys' }
web-sys = { path = 'crates/web-sys' }

# See https://github.com/rustwasm/walrus/pull/231
walrus = { git = "https://github.com/nokotan/walrus", branch = "dwarf-code-address-mapping" }
4 changes: 2 additions & 2 deletions crates/cli-support/Cargo.toml
Original file line number Diff line number Diff line change
@@ -18,14 +18,14 @@ log = "0.4"
rustc-demangle = "0.1.13"
serde_json = "1.0"
tempfile = "3.0"
walrus = "0.19.0"
walrus = "0.19"
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.84' }
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.84' }
wasm-bindgen-shared = { path = "../shared", version = '=0.2.84' }
wasm-bindgen-threads-xform = { path = '../threads-xform', version = '=0.2.84' }
wasm-bindgen-wasm-conventions = { path = '../wasm-conventions', version = '=0.2.84' }
wasm-bindgen-wasm-interpreter = { path = "../wasm-interpreter", version = '=0.2.84' }
wit-text = "0.8.0"
wit-walrus = "0.6.0"
wit-walrus = "0.6"
wit-validator = "0.2.0"
unicode-ident = "1.0.5"
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ rouille = { version = "3.0.0", default-features = false }
serde = { version = "1.0", features = ['derive'] }
serde_derive = "1.0"
serde_json = "1.0"
walrus = { version = "0.19.0", features = ['parallel'] }
walrus = { version = "0.19", features = ['parallel'] }
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.84" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.84" }

2 changes: 1 addition & 1 deletion crates/externref-xform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ edition = '2018'

[dependencies]
anyhow = "1.0"
walrus = "0.19.0"
walrus = "0.19"

[dev-dependencies]
rayon = "1.0"
2 changes: 1 addition & 1 deletion crates/multi-value-xform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ edition = "2018"

[dependencies]
anyhow = "1.0"
walrus = "0.19.0"
walrus = "0.19"

[dev-dependencies]
rayon = "1.0"
2 changes: 1 addition & 1 deletion crates/threads-xform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ edition = "2018"

[dependencies]
anyhow = "1.0"
walrus = "0.19.0"
walrus = "0.19"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.84" }

[dev-dependencies]
2 changes: 1 addition & 1 deletion crates/wasm-conventions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -10,5 +10,5 @@ description = "Utilities for working with Wasm codegen conventions (usually esta
edition = "2018"

[dependencies]
walrus = "0.19.0"
walrus = "0.19"
anyhow = "1.0"
2 changes: 1 addition & 1 deletion crates/wasm-interpreter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ edition = '2018'
[dependencies]
anyhow = "1.0"
log = "0.4"
walrus = "0.19.0"
walrus = "0.19"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.84" }

[dev-dependencies]