Skip to content

Commit

Permalink
Bump wasm-bindgen version
Browse files Browse the repository at this point in the history
  • Loading branch information
Ameobea committed Jul 16, 2024
1 parent e1af507 commit 069ced3
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 22 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ jobs:
# Built with `cargo install --target x86_64-unknown-linux-musl -f just`
- name: Install `just`
run: curl https://web-synth-ci-binaries.ameo.design/just -o ~/bin/just && chmod +x ~/bin/just
# Downloaded from Github like https://github.com/rustwasm/wasm-bindgen/releases/tag/0.2.82
# Downloaded from Github like https://github.com/rustwasm/wasm-bindgen/releases/tag/0.2.92
- name: Install `wasm-bindgen-cli`
run: curl https://web-synth-ci-binaries.ameo.design/wasm-bindgen -o ~/bin/wasm-bindgen && chmod +x ~/bin/wasm-bindgen
run: curl https://web-synth-ci-binaries.ameo.design/wasm-bindgen-0-2-92 -o ~/bin/wasm-bindgen && chmod +x ~/bin/wasm-bindgen
- name: Install `wasm-opt`
run: curl https://web-synth-ci-binaries.ameo.design/wasm-opt -o ~/bin/wasm-opt && chmod +x ~/bin/wasm-opt
- name: Install `wasm-strip`
Expand Down
3 changes: 3 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ deploy:
# phost update notes patch ./dist
rsync -Prv -e "ssh -o StrictHostKeyChecking=no -o IdentitiesOnly=yes -F /dev/null" ./dist/* debian@synth.ameo.dev:/var/www/synth.ameo.dev/

deploy-headless:
phost update web-synth-headless-test patch dist/headless

loc:
tokei --exclude src/vocalSynthesis/hts_engine_API --exclude src/vocalSynthesis/sinsy .

Expand Down
24 changes: 12 additions & 12 deletions engine/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 engine/engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "0.1.0"
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = { version = "=0.2.82" }
wasm-bindgen = { version = "=0.2.92" }
rand = "0.7"
rand_pcg = "0.2.1"
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion engine/midi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ futures = "0.3"
log = { version = "0.4", features = ["release_max_level_warn"] }
miniserde = "0.1.16"
js-sys = "0.3"
wasm-bindgen = "=0.2.82"
wasm-bindgen = "=0.2.92"
wasm-bindgen-futures = "0.4"

polysynth = { path = "../polysynth", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion engine/note_container/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = "=0.2.82"
wasm-bindgen = "=0.2.92"
# Disable logging staticly in release, making all log calls into no-ops
log = { version = "0.4", features = ["release_max_level_warn"] }
common = { path = "../common" }
Expand Down
2 changes: 1 addition & 1 deletion engine/polysynth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crate-type = ["cdylib", "rlib"]
# Disable logging staticly in release, making all log calls into no-ops
log = { version = "0.4", features = ["release_max_level_warn"] }
uuid = { version = "1.2" }
wasm-bindgen = { version = "=0.2.82", optional = true }
wasm-bindgen = { version = "=0.2.92", optional = true }
common = { path = "../common" }
wbg_logging = { path = "../wbg_logging", optional = true }
js-sys = "^0.3.36"
Expand Down
2 changes: 1 addition & 1 deletion engine/spectrum_viz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
lazy_static = "1.4.0"
palette = "0.5"
wasm-bindgen = { version = "=0.2.82", optional = true }
wasm-bindgen = { version = "=0.2.92", optional = true }
# Disable logging staticly in release, making all log calls into no-ops
log = { version = "0.4", features = ["release_max_level_warn"] }
wbg_logging = { path = "../wbg_logging", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion engine/wav_decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = "=0.2.82"
wasm-bindgen = "=0.2.92"
hound = "3.4"
common = { path = "../common" }
wbg_logging = { path = "../wbg_logging" }
Expand Down
2 changes: 1 addition & 1 deletion engine/waveform_renderer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = { version = "=0.2.82", optional = true }
wasm-bindgen = { version = "=0.2.92", optional = true }
common = { path = "../common", default-features = false, features = [] }
wbg_logging = { path = "../wbg_logging", optional = true }
log = { version = "0.4", features = ["release_max_level_warn"] }
Expand Down
2 changes: 1 addition & 1 deletion engine/wbg_logging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
console_error_panic_hook = "0.1.6"
# Disable logging staticly in release, making all log calls into no-ops
log = { version = "0.4", features = ["release_max_level_warn"] }
wasm-bindgen = { version = "=0.2.82" }
wasm-bindgen = { version = "=0.2.92" }
wasm-logger = "0.2"

0 comments on commit 069ced3

Please sign in to comment.