Skip to content

Commit

Permalink
fix: lock wasm-bindgen versions
Browse files Browse the repository at this point in the history
  • Loading branch information
coroiu committed Oct 10, 2024
1 parent e23e30b commit e5cdcdb
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-wasm-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
key: wasm-cargo-cache

- name: Install wasm-bindgen-cli
run: cargo install wasm-bindgen-cli
run: cargo install -f wasm-bindgen-cli --version 0.2.94

- name: Build
run: ./build.sh -r
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
key: wasm-cargo-cache

- name: Install wasm-bindgen-cli
run: cargo install wasm-bindgen-cli
run: cargo install -f wasm-bindgen-cli --version 0.2.94

- name: Build
run: ./build.sh -r
Expand Down
51 changes: 20 additions & 31 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/bitwarden-wasm-internal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ console_log = { version = "1.0.0", features = ["color"] }
js-sys = "0.3.68"
log = "0.4.20"
serde_json = ">=1.0.96, <2.0"
wasm-bindgen = { version = "0.2.91", features = ["serde-serialize"] }
wasm-bindgen = { version = "=0.2.94", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.41"

[lints]
Expand Down
2 changes: 1 addition & 1 deletion crates/bitwarden-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ console_log = { version = "1.0.0", features = ["color"] }
js-sys = "0.3.68"
log = "0.4.20"
serde = { version = "1.0.196", features = ["derive"] }
wasm-bindgen = { version = "0.2.91", features = ["serde-serialize"] }
wasm-bindgen = { version = "=0.2.94", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.41"

[dev-dependencies]
Expand Down

0 comments on commit e5cdcdb

Please sign in to comment.