OxideOps / chess

A comprehensive chess platform built with Rust, featuring both client and server components.
MIT License
2 stars 0 forks source link

Bump the dependencies group with 10 updates #544

Closed dependabot[bot] closed 9 months ago

dependabot[bot] commented 9 months ago

Bumps the dependencies group with 10 updates:

Package From To
confy 0.5.1 0.6.0
dioxus 94ead8f | 76facd6
js-sys 0.3.67 0.3.68
serde 1.0.195 1.0.196
serde_json 1.0.111 1.0.113
tokio 1.35.1 1.36.0
wasm-bindgen-futures 0.4.40 0.4.41
palette 0.7.3 0.7.4
web-sys 0.3.67 0.3.68
web-time 0.2.4 1.0.0

Updates confy from 0.5.1 to 0.6.0

Release notes

Sourced from confy's releases.

v0.6.0

v0.6.0 is a breaking change due to updated dependencies.

CHANGELOG

3331a99 Updated Cargo.toml to 0.6.0 and reported breaking changes in the README as was done previously 87e29ce Merge pull request #88 from daniestevez/update-dependencies 6d03bde update dependencies d5abd6c Merge pull request #83 from jreppnow/patch-1 de35749 use general error type for example in readme.md 700337e Merge pull request #80 from RampedIndent/patch-3 f003b47 Update README.md to address #61 ad0c862 Merge pull request #79 from deg4uss3r/degausser/fix_lints 14906cd Update lints to work with Rust 1.67 d899afe Merge pull request #78 from RampedIndent/patch-2 581cd78 Changed heading level ae5ccc5 Update README.md

Commits
  • 2c2f9ea Merge pull request #91 from deg4uss3r/master
  • 3331a99 Updated Cargo.toml to 0.6.0 and reported breaking changes in the README as wa...
  • 87e29ce Merge pull request #88 from daniestevez/update-dependencies
  • 6d03bde update dependencies
  • d5abd6c Merge pull request #83 from jreppnow/patch-1
  • de35749 use general error type for example in readme.md
  • 700337e Merge pull request #80 from RampedIndent/patch-3
  • f003b47 Update README.md to address #61
  • ad0c862 Merge pull request #79 from deg4uss3r/degausser/fix_lints
  • 14906cd Update lints to work with Rust 1.67
  • Additional commits viewable in compare view


Updates dioxus from 94ead8f to 76facd6

Commits
  • 76facd6 Add use_shared_lock
  • ea616f6 Make 'UseAsyncLock' hook
  • f643d44 Make 'UseLock' hook
  • 417cea7 Merge pull request #1898 from Andrew15-5/fix-fullstack-cli-build
  • b1f617a Merge pull request #1899 from Andrew15-5/fix-router-macro-typo
  • cb9a435 Merge pull request #1900 from Andrew15-5/add-short-release-option
  • 009238b feat(cli): added short release build option
  • 8beb3c7 chore(docs): fixed typo in router-macro
  • 62b0f87 fix(build): now fullstack client uses correct config
  • a3d6e9d fix hotreload cfg on release builds
  • Additional commits viewable in compare view


Updates js-sys from 0.3.67 to 0.3.68

Commits


Updates serde from 1.0.195 to 1.0.196

Release notes

Sourced from serde's releases.

v1.0.196

  • Improve formatting of "invalid type" error messages involving floats (#2682)
Commits
  • ede9762 Release 1.0.196
  • d438c2d Merge pull request #2682 from dtolnay/decimalpoint
  • bef110b Format Unexpected::Float with decimal point
  • b971ef1 Merge pull request #2681 from dtolnay/workspacedeps
  • 29d9f69 Fix workspace.dependencies default-features future compat warning
  • aecb408 Sort workspace dependencies
  • 1c675ab Merge pull request #2678 from rodoufu/workspaceDependencies
  • dd61963 Adding workspace dependencies
  • 111803a Merge pull request #2673 from Sky9x/msrv-badge
  • 0024f74 Use shields.io's MSRV badges
  • See full diff in compare view


Updates serde_json from 1.0.111 to 1.0.113

Release notes

Sourced from serde_json's releases.

v1.0.113

  • Add swap_remove and shift_remove methods on Map (#1109)

v1.0.112

  • Improve formatting of "invalid type" error messages involving floats (#1107)
Commits
  • 09d865b Release 1.0.113
  • 5aeab4e Merge pull request #1109 from serde-rs/remove
  • ca3c2ca Add swap_remove and shift_remove methods on Map
  • 7fece96 Release 1.0.112
  • 6a6d2bb Merge pull request #1107 from serde-rs/unexpectedfloat
  • 83d7bad Format f64 in error messages using ryu
  • 107c2d1 Merge pull request #1106 from serde-rs/invalidvalue
  • 62ca3e4 Handle Unexpected::Unit in Error::invalid_value
  • 296fafb Factor out JSON-specific Display impl for serde::de::Unexpected
  • e56cc69 Merge pull request #1105 from keienWang/master
  • Additional commits viewable in compare view


Updates tokio from 1.35.1 to 1.36.0

Release notes

Sourced from tokio's releases.

Tokio v1.36.0

1.36.0 (February 2nd, 2024)

Added

  • io: add tokio::io::Join (#6220)
  • io: implement AsyncWrite for Empty (#6235)
  • net: add support for anonymous unix pipes (#6127)
  • net: add UnixSocket (#6290)
  • net: expose keepalive option on TcpSocket (#6311)
  • sync: add {Receiver,UnboundedReceiver}::poll_recv_many (#6236)
  • sync: add Sender::{try_,}reserve_many (#6205)
  • sync: add watch::Receiver::mark_unchanged (#6252)
  • task: add JoinSet::try_join_next (#6280)

Changed

  • io: make copy cooperative (#6265)
  • io: make repeat and sink cooperative (#6254)
  • io: simplify check for empty slice (#6293)
  • process: use pidfd on Linux when available (#6152)
  • sync: use AtomicBool in broadcast channel future (#6298)

Documented

  • io: clarify clear_ready docs (#6304)
  • net: document that *Fd traits on TcpSocket are unix-only (#6294)
  • sync: document FIFO behavior of tokio::sync::Mutex (#6279)
  • chore: typographic improvements (#6262)
  • runtime: remove obsolete comment (#6303)
  • task: fix typo (#6261)

#6220: tokio-rs/tokio#6220 #6235: tokio-rs/tokio#6235 #6127: tokio-rs/tokio#6127 #6290: tokio-rs/tokio#6290 #6311: tokio-rs/tokio#6311 #6236: tokio-rs/tokio#6236 #6205: tokio-rs/tokio#6205 #6252: tokio-rs/tokio#6252 #6280: tokio-rs/tokio#6280 #6265: tokio-rs/tokio#6265 #6254: tokio-rs/tokio#6254 #6293: tokio-rs/tokio#6293 #6238: tokio-rs/tokio#6238 #6152: tokio-rs/tokio#6152 #6298: tokio-rs/tokio#6298 #6262: tokio-rs/tokio#6262 #6303: tokio-rs/tokio#6303 #6261: tokio-rs/tokio#6261

... (truncated)

Commits


Updates wasm-bindgen-futures from 0.4.40 to 0.4.41

Commits


Updates palette from 0.7.3 to 0.7.4

Changelog

Sourced from palette's changelog.

Version 0.7.4 - 2024-01-28

  • #373[373]: Add an "alloc" feature and make tests work with any feature combination. Closes #366[366].
  • #374[374]: Fix typo about max range of u8. Closes #1234[1234], #4321[4321].
  • #369[369]: Fix potential NaN from converting to Okhsl when the input is white or black. Closes #368[368].
  • #355[355]: Add traits for delta E and the improved formulas from Huang et al.
  • #351[351]: Improve some documentation for beginners.
  • #347[347]: Implements Rgba::from_str().
Commits
  • 7e446ea Merge pull request #375 from Ogeon/prepare_0.7.4
  • a1dbdab Prepare release 0.7.4
  • 4b17a15 Merge pull request #373 from Ogeon/alloc_and_any_features_in_tests
  • 919049c Merge pull request #374 from MultisampledNight/fix-typo
  • 5889047 docs: fix typo about max range of u8
  • 6d96f73 Remove old script files
  • 6e6f260 Add an "alloc" feature and make tests work with any feature combination
  • b141b66 Merge pull request #371 from Ogeon/update_release_actions
  • db0fbcf Update the dependencies of custom actions
  • 4c97fb5 Merge pull request #370 from Ogeon/remove_color_scheme_and_clap
  • Additional commits viewable in compare view


Updates web-sys from 0.3.67 to 0.3.68

Commits


Updates web-time from 0.2.4 to 1.0.0

Release notes

Sourced from web-time's releases.

V1 Release

Added

  • V1 release.
Changelog

Sourced from web-time's changelog.

[1.0.0] - 2024-01-14

Added

  • V1 release.
Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 9 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.