Skip to content

Commit

Permalink
Lock wasm-bindgen version in dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
allsey87 committed Oct 11, 2024
1 parent 3f1b785 commit 357cf5e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
- name: Install cargo-binstall
uses: cargo-bins/cargo-binstall@main
- name: Install wasm-bindgen
run: cargo binstall --no-confirm [email protected].87
run: cargo binstall --no-confirm [email protected].89
- name: Run tests
run: cargo test
13 changes: 7 additions & 6 deletions web-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ futures-core = "0.3.30"
futures-util = { version = "0.3.30", features = ["channel"] }
gloo-events = "0.2.0"
gloo-timers = { version = "0.3", features = ["futures"] }
js-sys = "0.3.64"
js-sys = "0.3.66"
pin-utils = { version = "0.1.0" }
serde = { version = "1.0.193", features = ["derive"] }
wasm-bindgen-futures = "0.4.37"
wasm-bindgen = "0.2.87"
web-sys = { version = "0.3.64", features = ["Worker", "DedicatedWorkerGlobalScope", "MessagePort", "EventTarget", "MessageEvent"] }
wasm-bindgen-futures = "0.4.39"
wasm-bindgen = "0.2.89"
web-sys = { version = "0.3.66", features = ["Worker", "DedicatedWorkerGlobalScope", "MessagePort", "EventTarget", "MessageEvent"] }

[dev-dependencies]
wasm-bindgen = "=0.2.89"
console_error_panic_hook = "0.1.7"
wasm-bindgen-test = "0.3.37"
web-sys = { version = "0.3.64", features = ["MessagePort", "MessageChannel"] }
wasm-bindgen-test = "0.3.39"
web-sys = { version = "0.3.66", features = ["MessagePort", "MessageChannel"] }

0 comments on commit 357cf5e

Please sign in to comment.