Skip to content

Commit

Permalink
chore(deps): bump the dependencies group with 5 updates (#45)
Browse files Browse the repository at this point in the history
* chore(deps): bump the dependencies group with 5 updates

Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.214` |
| [image](https://github.com/image-rs/image) | `0.25.2` | `0.25.4` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.128` | `1.0.132` |
| [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) | `0.2.93` | `0.2.95` |
| [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.70` | `0.3.72` |


Updates `serde` from 1.0.210 to 1.0.214
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.210...v1.0.214)

Updates `image` from 0.25.2 to 0.25.4
- [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md)
- [Commits](image-rs/image@v0.25.2...v0.25.4)

Updates `serde_json` from 1.0.128 to 1.0.132
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@1.0.128...1.0.132)

Updates `wasm-bindgen` from 0.2.93 to 0.2.95
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.93...0.2.95)

Updates `web-sys` from 0.3.70 to 0.3.72
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: image
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: wasm-bindgen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: web-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: fix the build on Windows

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mateusz Maćkowski <m4tx@m4tx.pl>
  • Loading branch information
dependabot[bot] and m4tx authored Nov 1, 2024
1 parent 90ea450 commit 2a33a82
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
targets: wasm32-unknown-unknown

- name: Install trunk
run: cargo install trunk
run: cargo install --locked --no-default-features -F update_check,rustls trunk

- name: Build
run: cargo +${{ matrix.rust }} build --features=${{ matrix.features }}
Expand Down
90 changes: 45 additions & 45 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ codegen-units = 1
lto = true

[workspace.dependencies]
serde = { version = "1.0.210", features = ["derive"] }
serde = { version = "1.0.214", features = ["derive"] }
6 changes: 3 additions & 3 deletions chombo-gen-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ chombo-gen-common = { path = "../chombo-gen-common", features = ["backend"] }
riichi_hand = "0.6.3"
rocket = "0.5.1"
rocket-cache-response = "0.6.4"
image = { version = "0.25.2", default-features = false, features = ["png"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
image = { version = "0.25.4", default-features = false, features = ["png"] }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
log = { version = "0.4.22", features = ["max_level_trace", "release_max_level_info"] }
chrono = "0.4.38"
time = "0.3.36"
4 changes: 2 additions & 2 deletions chombo-gen-frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ yew-hooks = "0.3.2"
serde.workspace = true
wasm-bindgen-futures = "0.4.43"
base64 = "0.22.1"
wasm-bindgen = "0.2.90"
web-sys = { version = "0.3.70", features = ["console", "HtmlElement", "HtmlButtonElement", "HtmlSelectElement", "MouseEvent", "DomRect"] }
wasm-bindgen = "0.2.95"
web-sys = { version = "0.3.72", features = ["console", "HtmlElement", "HtmlButtonElement", "HtmlSelectElement", "MouseEvent", "DomRect"] }

0 comments on commit 2a33a82

Please sign in to comment.