Skip to content

Commit

Permalink
update to wasm-bindgen 0.2.95
Browse files Browse the repository at this point in the history
  • Loading branch information
astraw committed Oct 22, 2024
1 parent f3b2b11 commit c67f8e2
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ build-freemovr-calibration-webapp:
- echo $PATH
- rustup target add wasm32-unknown-unknown

- cargo install wasm-bindgen-cli --version 0.2.92 --force --locked
- cargo install wasm-bindgen-cli --version 0.2.95 --force --locked
- cargo install grass

- wasm-bindgen --version
Expand Down Expand Up @@ -1222,7 +1222,7 @@ braid-webapps:
# ... and install latest (and therefore matching) wasm-pack
- curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
# ... and wasm-bindgen-cli
- cargo install wasm-bindgen-cli --version 0.2.92 --force --locked
- cargo install wasm-bindgen-cli --version 0.2.95 --force --locked
- cargo install grass
- rustup target add wasm32-unknown-unknown
- export PATH="$PATH:$CARGO_HOME/bin"
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ chrono = { version = "0.4.35", default-features = false }
eyre = "0.6.12"
image = { version = "0.25", default-features = false }
rerun = { version = "0.19", default-features = false, features = ["sdk"] }
wasm-bindgen = { version = "0.2.95" }
web-sys = { version = "0.3.72" }

[replace]
Expand Down
2 changes: 1 addition & 1 deletion ads-webasm-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ rust-version = "1.76"
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = "0.2.92"
wasm-bindgen = { workspace = true }
js-sys = "0.3"
chrono = { version = "0.4.23", default-features = false, features = [
"clock",
Expand Down
2 changes: 1 addition & 1 deletion ads-webasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ rust-version = "1.76"
yew = { version = "0.21.0", features = ["csr"] }
js-sys = "0.3"
gloo-file = "0.2"
wasm-bindgen = "0.2.92"
wasm-bindgen = { workspace = true }
serde = "1.0"
serde_yaml = "0.9"
serde_derive = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion braid-april-cal/braid-april-cal-webapp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"]
yew = { version = "0.21.0", features = ["csr"] }
yew-tincture = "0.2.2"
js-sys = "0.3"
wasm-bindgen = "0.2.92"
wasm-bindgen = { workspace = true }
web-sys = { workspace = true, features = [
"CssStyleDeclaration",
"HtmlAnchorElement",
Expand Down
2 changes: 1 addition & 1 deletion braid/braid-run/braid_frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ log = "0.4"
wasm-logger = "0.2.0"
gloo-events = "0.1.1"
gloo-utils = "0.1"
wasm-bindgen = "0.2.92"
wasm-bindgen = { workspace = true }
wasm-bindgen-futures = "0.4"
js-sys = "0.3"
yew = { version = "0.21.0", features = ["csr"] }
Expand Down
2 changes: 1 addition & 1 deletion braidz-viewer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ gloo = "0.8.0"
gloo-file = "0.2"
yew = { version = "0.21.0", features = ["csr"] }

wasm-bindgen = "0.2.92"
wasm-bindgen = { workspace = true }
js-sys = "0.3.28"
plotters = { version = "0.3.4", default-features = false, features = [
"bitmap_encoder",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ yew = { version = "0.21.0", features = ["csr"] }
yew-agent = "0.2.0"
yew-tincture = "0.2.2"
js-sys = "0.3"
wasm-bindgen = "0.2.92"
wasm-bindgen = { workspace = true }
web-sys = { workspace = true, features = [
"CssStyleDeclaration",
"HtmlAnchorElement",
Expand Down
2 changes: 1 addition & 1 deletion strand-cam/yew_frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
anyhow = "1.0"
wasm-logger = "0.2.0"
wasm-bindgen = "0.2.92"
wasm-bindgen = { workspace = true }
wasm-bindgen-futures = "0.4"
js-sys = "0.3"
gloo-events = "0.1.1"
Expand Down

0 comments on commit c67f8e2

Please sign in to comment.