Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the all group with 36 updates #132

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 19, 2024

Bumps the all group with 36 updates:

Package From To
crossbeam 0.8.3 0.8.4
getrandom 0.2.11 0.2.14
log 0.4.20 0.4.21
nalgebra 0.32.3 0.32.5
rapier2d-f64 0.17.2 0.18.0
serde 1.0.193 1.0.198
wasmer 4.2.5 4.2.8
bytes 1.5.0 1.6.0
wide 0.7.13 0.7.16
anyhow 1.0.77 1.0.82
regex 1.10.2 1.10.4
wasmer-compiler-cranelift 4.2.5 4.2.8
js-sys 0.3.66 0.3.69
wasm-bindgen 0.2.89 0.2.92
wasm-bindgen-futures 0.4.39 0.4.42
rayon 1.8.0 1.10.0
test-log 0.2.14 0.2.15
serde_json 1.0.108 1.0.116
serial_test 2.0.0 3.0.0
maths-rs 0.2.5 0.2.6
chrono 0.4.31 0.4.38
base64 0.21.5 0.22.0
built 0.7.1 0.7.2
reqwest 0.11.23 0.11.27
tokio 1.35.1 1.37.0
axum 0.7.2 0.7.5
tower-http 0.5.0 0.5.2
http 1.0.0 1.1.0
clap 4.4.11 4.5.4
comfy-table 7.1.0 7.1.1
tempfile 3.8.1 3.10.1
itertools 0.12.0 0.12.1
rusqlite 0.30.0 0.31.0
toml 0.8.8 0.8.12
indicatif 0.17.7 0.17.8
metaheuristics-nature 9.2.3 10.0.1

Updates crossbeam from 0.8.3 to 0.8.4

Release notes

Sourced from crossbeam's releases.

crossbeam-utils 0.8.4

  • Bump loom dependency to version 0.5. (#686)

crossbeam-deque 0.8.4

  • Bump the minimum supported Rust version to 1.61. (#1037)

crossbeam 0.8.4

  • Remove dependency on cfg-if. (#1072)
Changelog

Sourced from crossbeam's changelog.

Version 0.8.4

  • Remove dependency on cfg-if. (#1072)
Commits
  • 9c3182a Prepare for the next release
  • 35a55d2 Remove dependency on cfg-if
  • 0935295 epoch: Remove unused autocfg dependency
  • e02133b Use const thread_local
  • 5a15fc2 More correct buffer allocation
  • 7389cdf ci: Remove scripts that call single command
  • 4ef4f09 Ignore dead_code warnings for tuple structs
  • See full diff in compare view

Updates getrandom from 0.2.11 to 0.2.14

Changelog

Sourced from getrandom's changelog.

[0.2.14] - 2024-04-08

Fixed

  • Enable /dev/urandom fallback for MUSL-based Linux targets #408

#408: rust-random/getrandom#408

[0.2.13] - 2024-04-06

Added

  • linux_disable_fallback crate feature to disable /dev/urandom-based fallback on Linux and Android targets. Enabling this feature bumps minimum supported Linux kernel version to 3.17 and Android API level to 23 (Marshmallow). #396

Changed

  • Disable /dev/urandom fallback for Linux targets outside of the following target_arches: aarch64, arm, powerpc, powerpc64, s390x, x86, x86_64 #396
  • Do not catch EPERM error code on Android while checking availability of the getrandom syscall #396

#396: rust-random/getrandom#396

[0.2.12] - 2024-01-09

Fixed

  • Custom backend for targets without atomics #385

Changed

  • Improve robustness of the Hermit backend and sys_fill_exact #386
  • Raise minimum supported Apple OS versions to macOS 10.12 and iOS 10 #388

Added

  • Document platform support policy #387

#385: rust-random/getrandom#385 #386: rust-random/getrandom#386 #387: rust-random/getrandom#387 #388: rust-random/getrandom#388

Commits

Updates log from 0.4.20 to 0.4.21

Changelog

Sourced from log's changelog.

[0.4.21] - 2024-02-27

What's Changed

New Contributors

Commits
  • 3ccdc28 Merge pull request #617 from rust-lang/cargo/0.4.21
  • 6153cb2 prepare for 0.4.21 release
  • f0f7494 Merge pull request #613 from rust-lang/feat/kv-cleanup
  • 2b220bf clean up structured logging example
  • 646e9ab use original Visitor name for VisitValue
  • cf85c38 add needed subfeatures to kv_unstable
  • 73e9539 fix up capturing of :err
  • 31bb4b0 move error macros together
  • ad91711 support field shorthand in macros
  • 90a347b restore removed APIs as deprecated
  • Additional commits viewable in compare view

Updates nalgebra from 0.32.3 to 0.32.5

Changelog

Sourced from nalgebra's changelog.

[0.32.5] (28 March 2024)

Fixed

  • Fix numerical issue on SVD with near-identity matrix.

[0.32.4] (19 Feb 2023)

Added

  • Add the glam-0.25 feature to enable conversion from/to types from glam v0.25.
Commits

Updates rapier2d-f64 from 0.17.2 to 0.18.0

Changelog

Sourced from rapier2d-f64's changelog.

v0.18.0 (24 Jan. 2024)

The main highlight of this release is the implementation of a new non-linear constraints solver for better stability and increased convergence rates. See #579 for additional information.

In order to adjust the number of iterations of the new solver, simply adjust IntegrationParameters::num_solver_iterations. If recovering the old solver behavior is useful to you, call IntegrationParameters::switch_to_standard_pgs_solver().

It is now possible to specify some additional solver iteration for specific rigid-bodies (and everything interacting with it directly or indirectly through contacts and joints): RigidBodyBuilder::additional_solver_iterations and RigidBodyBuilder::set_additional_solver_iterations. This allows for higher-accuracy on subsets of the physics scene without affecting performance of the other parts of the simulation.

Fix

  • Fix bug causing angular joint limits and motor to sometimes only take into account half of the angles specified by the user.
  • Fix bug where collisions would not be re-computed after a collider was re-enabled.

Added

  • Add a SpringJoint and SpringJointBuilder for simulating springs with customizable stiffness and damping coefficients.
  • Add SphericalJoint::local_frame1/2, ::set_local_frame1/2, and SphericalJointBuilder::local_frame1/2 to set both the joint’s anchor and reference orientation.
  • Add EffectiveCharacterMovement::is_sliding_down_slope to indicate if the character controlled by the kinematic character controller is sliding on a slope that is too steep.
  • Add Wheel::side_friction_stiffness to customize the side friction applied to the vehicle controller’s wheel.
  • Add Wheel::raycast_info to access more wheel information relative to the ground.
  • Add DebugRenderStyle::disabled_color_multiplier to make the debug-renderer color disabled object differently.
  • Fix incorrect update of angular degrees-of-freedoms on spherical multibody joints.
  • Fix debug-renderer showing moved kinematic rigid-bodies only at their initial position.

Modified

  • Make Wheel::friction_slip public to customize the front friction applied to the vehicle controller’s wheels.
  • Add the DebugRenderBackend::filter_object predicate that can be implemented to apply custom filtering rules on the objects being rendered.
  • Switch the testbed to bevy 0.12 and use its new Gizmos API for rendering lines.
  • Rename NarrowPhase::contacts_with to NarrowPhase::contact_pairs_with.
  • Rename NarrowPhase::intersections_with to NarrowPhase::intersection_pairs_with.
Commits
  • aef873f Release v0.18.0
  • 6cee6b0 Merge pull request #571 from AnonymousAcid7787/fix-Setting-the-motor-position...
  • 7ba53df Merge pull request #582 from dimforge/misc
  • 1837d8f chore: fix tests
  • 9fed726 chore: rename the multibody motor debug demo
  • 2ed34ba Fix dimforge#416 - update ball joint motor pos
  • b96e618 Make testing environment with bug repro code
  • d84aa82 Merge pull request #527 from Aceeri/debug-render-com
  • 46b2441 feat!: rename narrow-phase methods for more clarity.
  • 5bf3983 feat: re-export BoundingVolume, RayCast, PointQuery, PointQueryWithlocation f...
  • Additional commits viewable in compare view

Updates serde from 1.0.193 to 1.0.198

Release notes

Sourced from serde's releases.

v1.0.198

v1.0.197

  • Fix unused_imports warnings when compiled by rustc 1.78
  • Optimize code size of some Display impls (#2697, thanks @​nyurik)

v1.0.196

  • Improve formatting of "invalid type" error messages involving floats (#2682)

v1.0.195

  • Prevent remote definitions of tuple struct or tuple variant from triggering dead_code warning (#2671)

v1.0.194

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache
Commits
  • c4fb923 Release 1.0.198
  • 65b7eea Merge pull request #2729 from dtolnay/saturating
  • 01cd696 Integrate Saturating<T> deserialization into impl_deserialize_num macro
  • c13b3f7 Format PR 2709
  • a6571ee Merge pull request #2709 from jbethune/master
  • 6e38aff Revert "Temporarily disable miri on doctests"
  • 3d1b19e Implement Ser+De for Saturating\<T>
  • 5b24f88 Resolve legacy_numeric_constants clippy lints
  • 74d0670 Explicitly install a Rust toolchain for cargo-outdated job
  • 3bfab6e Temporarily disable miri on doctests
  • Additional commits viewable in compare view

Updates wasmer from 4.2.5 to 4.2.8

Release notes

Sourced from wasmer's releases.

Release v4.2.8

This release improves journal support and improves the performance of the singlepass backend. Also contains fixes to the Edge CLI.

Release v4.2.7

This release adds the wasmer domain command for DNS records management, and also includes an important fix to the stack_restore WASIX syscall (used by the longjmp function).

Release v4.2.6

This release includes a number of DX improvements for the Wasmer CLI, as well as fixes to WASI and its filesystem implementation.

Changelog

Sourced from wasmer's changelog.

4.2.8 - 05/04/2024

This release improves journal support and improves the performance of the singlepass backend. Also contains fixes to the Edge CLI.

Added

  • #4510 Added support for creating log file journals directly from buffers
  • #4506 feat: add wasmer-argus
  • #4508 Upgrade edge-{schema,util} crates + add some helper methdos

Changed

  • #4541 Removed some dead code
  • #4539 deps: Upgrade h2 due to RUSTSEC advisory
  • #4527 allow owner field in app.yaml
  • #4526 feat(singlepass): use SIMD insts for popcount
  • #4507 deps: Upgrade edge-schema to 0.0.3
  • #4462 DProxy

Fixed

  • #4542 Various fixes detected in the build
  • #4537 Fix owner issues with app create
  • #4535 fix(cli): Fix Edge WinterJS template
  • #4525 Fix bug with app deploy: app URL is stale
  • #4520 Fix singlepass panic

4.2.7 - 19/03/2024

This release adds the wasmer domain command for DNS records management, and also includes an important fix to the stack_restore WASIX syscall (used by the longjmp function).

Added

  • #4478 chore(backend-api): Add size to PackageDistribution

Changed

  • #4492 No longer restoring the thread local memory when we longjmp
  • #4487 Manage DNS records
  • #4220 Ability to detect a tainted instance
  • #4455 Implemented an exponential CPU backoff that kicks in when a run token is not held
  • #4470 chore: Completely remove wasix_http_client

Fixed

  • #4490 Fix for a panic in the sock_recv when a file handle is missing
  • #4335 Fixed an issue where the package loader was blocking the tokio runtime

... (truncated)

Commits

Updates bytes from 1.5.0 to 1.6.0

Release notes

Sourced from bytes's releases.

Bytes 1.6.0 (March 22, 2024)

Added

  • Add Bytes::is_unique (#643)

Documented

  • Fix changelog typo (#628)
  • Fix some spelling mistakes (#633)
  • Typo fix (#637)
  • Fix broken links (#639)
  • Add security policy (#649)

Internal changes

  • Move comment to correct constant (#629)
  • Various cleanup (#635)
  • Simplify UninitSlice::as_uninit_slice_mut() logic (#644)
  • Use self. instead of Self:: (#642)
  • BytesMut: Assert alignment of Shared (#652)
  • Remove unnecessary namespace qualifier (#660)
  • Remove an unnecessary else branch (#662)
  • Remove unreachable else branch (#661)
  • make parameter mut in From<Vec> (#667)
  • Restore commented tests (#665)
  • Use sub instead of offset (#668)
  • Calculate original capacity only if necessary (#666)
  • set_vec_pos does not need a second parameter (#672)
  • get_vec_pos: use &self instead of &mut self (#670)
  • Refactor split_at/split_to (#663)
  • Use Iterator from the prelude (#673)
  • copy_to_bytes: Add panic section to docs (#676)
  • Remove redundant reserve call (#674)
  • Use ManuallyDrop instead of mem::forget (#675)
Changelog

Sourced from bytes's changelog.

1.6.0 (March 22, 2024)

Added

  • Add Bytes::is_unique (#643)

Documented

  • Fix changelog typo (#628)
  • Fix some spelling mistakes (#633)
  • Typo fix (#637)
  • Fix broken links (#639)
  • Add security policy (#649)

Internal changes

  • Move comment to correct constant (#629)
  • Various cleanup (#635)
  • Simplify UninitSlice::as_uninit_slice_mut() logic (#644)
  • Use self. instead of Self:: (#642)
  • BytesMut: Assert alignment of Shared (#652)
  • Remove unnecessary namespace qualifier (#660)
  • Remove an unnecessary else branch (#662)
  • Remove unreachable else branch (#661)
  • make parameter mut in From<Vec> (#667)
  • Restore commented tests (#665)
  • Use sub instead of offset (#668)
  • Calculate original capacity only if necessary (#666)
  • set_vec_pos does not need a second parameter (#672)
  • get_vec_pos: use &self instead of &mut self (#670)
  • Refactor split_at/split_to (#663)
  • Use Iterator from the prelude (#673)
  • copy_to_bytes: Add panic section to docs (#676)
  • Remove redundant reserve call (#674)
  • Use ManuallyDrop instead of mem::forget (#675)
Commits

Updates wide from 0.7.13 to 0.7.16

Commits

Updates anyhow from 1.0.77 to 1.0.82

Release notes

Sourced from anyhow's releases.

1.0.82

  • Documentation improvements

1.0.81

  • Make backtrace support available when using -Dwarnings (#354)

1.0.80

  • Fix unused_imports warnings when compiled by rustc 1.78

1.0.79

  • Work around improperly cached build script result by sccache (#340)

1.0.78

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#337)
Commits
  • 074bdea Release 1.0.82
  • 47a4fbf Merge pull request #360 from dtolnay/docensure
  • c5af1db Make ensure's doc comment apply to the cfg(not(doc)) macro too
  • bebc7a2 Revert "Temporarily disable miri on doctests"
  • f2c4db9 Update ui test suite to nightly-2024-03-31
  • 028cbee Explicitly install a Rust toolchain for cargo-outdated job
  • 7a4cac5 Merge pull request #358 from dtolnay/workspacewrapper
  • 939db01 Apply RUSTC_WORKSPACE_WRAPPER
  • 9f84a37 Temporarily disable miri on doctests
  • 45e5a58 Ignore dead code lint in test
  • Additional commits viewable in compare view

Updates regex from 1.10.2 to 1.10.4

Changelog

Sourced from regex's changelog.

1.10.3 (2024-01-21)

This is a new patch release that fixes the feature configuration of optional dependencies, and fixes an unsound use of bounds check elision.

Bug fixes:

Commits
  • aa2d8bd 1.10.4
  • 088d7f3 api: add Cow guarantee to replace API
  • a5ae351 regex-automata-0.4.6
  • 9cf4a42 automata: fix bug where reverse NFA lacked an unanchored prefix
  • 10fe722 style: clean up some recent lint violations
  • d7f9347 regex-automata-0.4.5
  • 07ef7f1 automata: make additional prefileter metadata public
  • 0c09903 1.10.3
  • 653bb59 deps: bump regex-automata to 0.4.4
  • e7b5401 regex-automata-0.4.4
  • Additional commits viewable in compare view

Updates wasmer-compiler-cranelift from 4.2.5 to 4.2.8

Release notes

Sourced from wasmer-compiler-cranelift's releases.

Release v4.2.8

This release improves journal support and improves the performance of the singlepass backend. Also contains fixes to the Edge CLI.

Release v4.2.7

This release adds the wasmer domain command for DNS records management, and also includes an important fix to the stack_restore WASIX syscall (used by the longjmp function).

Release v4.2.6

This release includes a number of DX improvements for the Wasmer CLI, as well as fixes to WASI and its filesystem implementation.

Changelog

Sourced from wasmer-compiler-cranelift's changelog.

4.2.8 - 05/04/2024

This release improves journal support and improves the performance of the singlepass backend. Also contains fixes to the Edge CLI.

Added

  • #4510 Added support for creating log file journals directly from buffers
  • #4506 feat: add wasmer-argus
  • #4508 Upgrade edge-{schema,util} crates + add some helper methdos

Changed

  • #4541 Removed some dead code
  • #4539 deps: Upgrade h2 due to RUSTSEC advisory
  • #4527 allow owner field in app.yaml
  • #4526 feat(singlepass): use SIMD insts for popcount
  • #4507 deps: Upgrade edge-schema to 0.0.3
  • #4462 DProxy

Fixed

  • #4542 Various fixes detected in the build
  • #4537 Fix owner issues with app create
  • #4535 fix(cli): Fix Edge WinterJS template
  • #4525 Fix bug with app deploy: app URL is stale
  • #4520 Fix singlepass panic

4.2.7 - 19/03/2024

This release adds the wasmer domain command for DNS records management, and also includes an important fix to the stack_restore WASIX syscall (used by the longjmp function).

Added

  • #4478 chore(backend-api): Add size to PackageDistribution

Changed

  • #4492 No longer restoring the thread local memory when we longjmp
  • #4487 Manage DNS records
  • #4220 Ability to detect a tainted instance
  • #4455 Implemented an exponential CPU backoff that kicks in when a run token is not held
  • #4470 chore: Completely remove wasix_http_client

Fixed

  • #4490 Fix for a panic in the sock_recv when a file handle is missing
  • #4335 Fixed an issue where the package loader was blocking the tokio runtime

... (truncated)

Commits

Updates js-sys from 0.3.66 to 0.3.69

Commits

Updates wasm-bindgen from 0.2.89 to 0.2.92

Changelog

Sourced from wasm-bindgen's changelog.

0.2.92

Released 2024-03-04

Added

  • Add bindings for RTCPeerConnectionIceErrorEvent. #3835

  • Add bindings for CanvasState.reset(), affecting CanvasRenderingContext2D and OffscreenCanvasRenderingContext2D. #3844

  • Add TryFrom implementations for Number, that allow losslessly converting from 64- and 128-bits numbers. #3847

  • Add support for Option<*const T>, Option<*mut T> and NonNull<T>. #3852 #3857

  • Allow overriding the URL used for headless tests by setting WASM_BINDGEN_TEST_ADDRESS. #3861

Fixed

  • Make .wasm output deterministic when using --reference-types. #3851

  • Don't allow invalid Unicode scalar values in char. #3866


0.2.91

Released 2024-02-06

Added

  • Added bindings for the RTCRtpTransceiver.setCodecPreferences() and unstable bindings for the RTCRtpEncodingParameters.scalabilityMode. #3828

  • Add unstable bindings for the FileSystemAccess API #3810

  • Added support for running tests in shared and service workers with wasm_bindgen_test_configure! run_in_shared_worker and run_in_service_worker. #3804

  • Accept the --skip flag with wasm-bindgen-test-runner. #3803

... (truncated)

Commits

Updates wasm-bindgen-futures from 0.4.39 to 0.4.42

Commits...

Description has been truncated

Bumps the all group with 36 updates:

| Package | From | To |
| --- | --- | --- |
| [crossbeam](https://github.com/crossbeam-rs/crossbeam) | `0.8.3` | `0.8.4` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.11` | `0.2.14` |
| [log](https://github.com/rust-lang/log) | `0.4.20` | `0.4.21` |
| [nalgebra](https://github.com/dimforge/nalgebra) | `0.32.3` | `0.32.5` |
| [rapier2d-f64](https://github.com/dimforge/rapier) | `0.17.2` | `0.18.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.193` | `1.0.198` |
| [wasmer](https://github.com/wasmerio/wasmer) | `4.2.5` | `4.2.8` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.5.0` | `1.6.0` |
| [wide](https://github.com/Lokathor/wide) | `0.7.13` | `0.7.16` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.77` | `1.0.82` |
| [regex](https://github.com/rust-lang/regex) | `1.10.2` | `1.10.4` |
| [wasmer-compiler-cranelift](https://github.com/wasmerio/wasmer) | `4.2.5` | `4.2.8` |
| [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.66` | `0.3.69` |
| [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) | `0.2.89` | `0.2.92` |
| [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.39` | `0.4.42` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.8.0` | `1.10.0` |
| [test-log](https://github.com/d-e-s-o/test-log) | `0.2.14` | `0.2.15` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.116` |
| [serial_test](https://github.com/palfrey/serial_test) | `2.0.0` | `3.0.0` |
| [maths-rs](https://github.com/polymonster/maths-rs) | `0.2.5` | `0.2.6` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.31` | `0.4.38` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.21.5` | `0.22.0` |
| [built](https://github.com/lukaslueg/built) | `0.7.1` | `0.7.2` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.23` | `0.11.27` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.35.1` | `1.37.0` |
| [axum](https://github.com/tokio-rs/axum) | `0.7.2` | `0.7.5` |
| [tower-http](https://github.com/tower-rs/tower-http) | `0.5.0` | `0.5.2` |
| [http](https://github.com/hyperium/http) | `1.0.0` | `1.1.0` |
| [clap](https://github.com/clap-rs/clap) | `4.4.11` | `4.5.4` |
| [comfy-table](https://github.com/nukesor/comfy-table) | `7.1.0` | `7.1.1` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.10.1` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.12.0` | `0.12.1` |
| [rusqlite](https://github.com/rusqlite/rusqlite) | `0.30.0` | `0.31.0` |
| [toml](https://github.com/toml-rs/toml) | `0.8.8` | `0.8.12` |
| [indicatif](https://github.com/console-rs/indicatif) | `0.17.7` | `0.17.8` |
| [metaheuristics-nature](https://github.com/KmolYuan/metaheuristics-nature-rs) | `9.2.3` | `10.0.1` |


Updates `crossbeam` from 0.8.3 to 0.8.4
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-0.8.3...crossbeam-0.8.4)

Updates `getrandom` from 0.2.11 to 0.2.14
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.11...v0.2.14)

Updates `log` from 0.4.20 to 0.4.21
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.20...0.4.21)

Updates `nalgebra` from 0.32.3 to 0.32.5
- [Changelog](https://github.com/dimforge/nalgebra/blob/dev/CHANGELOG.md)
- [Commits](dimforge/nalgebra@v0.32.3...v0.32.5)

Updates `rapier2d-f64` from 0.17.2 to 0.18.0
- [Changelog](https://github.com/dimforge/rapier/blob/master/CHANGELOG.md)
- [Commits](dimforge/rapier@v0.17.2...v0.18.0)

Updates `serde` from 1.0.193 to 1.0.198
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.193...v1.0.198)

Updates `wasmer` from 4.2.5 to 4.2.8
- [Release notes](https://github.com/wasmerio/wasmer/releases)
- [Changelog](https://github.com/wasmerio/wasmer/blob/master/CHANGELOG.md)
- [Commits](wasmerio/wasmer@v4.2.5...v4.2.8)

Updates `bytes` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.5.0...v1.6.0)

Updates `wide` from 0.7.13 to 0.7.16
- [Commits](Lokathor/wide@v0.7.13...v0.7.16)

Updates `anyhow` from 1.0.77 to 1.0.82
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.77...1.0.82)

Updates `regex` from 1.10.2 to 1.10.4
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.10.2...1.10.4)

Updates `wasmer-compiler-cranelift` from 4.2.5 to 4.2.8
- [Release notes](https://github.com/wasmerio/wasmer/releases)
- [Changelog](https://github.com/wasmerio/wasmer/blob/master/CHANGELOG.md)
- [Commits](wasmerio/wasmer@v4.2.5...v4.2.8)

Updates `js-sys` from 0.3.66 to 0.3.69
- [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)

Updates `wasm-bindgen` from 0.2.89 to 0.2.92
- [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.89...0.2.92)

Updates `wasm-bindgen-futures` from 0.4.39 to 0.4.42
- [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)

Updates `rayon` from 1.8.0 to 1.10.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.8.0...rayon-core-v1.10.0)

Updates `test-log` from 0.2.14 to 0.2.15
- [Release notes](https://github.com/d-e-s-o/test-log/releases)
- [Changelog](https://github.com/d-e-s-o/test-log/blob/main/CHANGELOG.md)
- [Commits](d-e-s-o/test-log@v0.2.14...v0.2.15)

Updates `serde_json` from 1.0.108 to 1.0.116
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.108...v1.0.116)

Updates `serial_test` from 2.0.0 to 3.0.0
- [Release notes](https://github.com/palfrey/serial_test/releases)
- [Commits](palfrey/serial_test@v2.0.0...v3.0.0)

Updates `maths-rs` from 0.2.5 to 0.2.6
- [Release notes](https://github.com/polymonster/maths-rs/releases)
- [Commits](polymonster/maths-rs@0.2.5...0.2.6)

Updates `chrono` from 0.4.31 to 0.4.38
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.31...v0.4.38)

Updates `base64` from 0.21.5 to 0.22.0
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.21.5...v0.22.0)

Updates `built` from 0.7.1 to 0.7.2
- [Changelog](https://github.com/lukaslueg/built/blob/master/CHANGELOG.md)
- [Commits](lukaslueg/built@0.7.1...0.7.2)

Updates `reqwest` from 0.11.23 to 0.11.27
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.23...v0.11.27)

Updates `tokio` from 1.35.1 to 1.37.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.35.1...tokio-1.37.0)

Updates `axum` from 0.7.2 to 0.7.5
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](tokio-rs/axum@axum-v0.7.2...axum-v0.7.5)

Updates `tower-http` from 0.5.0 to 0.5.2
- [Release notes](https://github.com/tower-rs/tower-http/releases)
- [Commits](tower-rs/tower-http@tower-http-0.5.0...tower-http-0.5.2)

Updates `http` from 1.0.0 to 1.1.0
- [Release notes](https://github.com/hyperium/http/releases)
- [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md)
- [Commits](hyperium/http@v1.0.0...v1.1.0)

Updates `clap` from 4.4.11 to 4.5.4
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.4.11...v4.5.4)

Updates `comfy-table` from 7.1.0 to 7.1.1
- [Release notes](https://github.com/nukesor/comfy-table/releases)
- [Changelog](https://github.com/Nukesor/comfy-table/blob/main/CHANGELOG.md)
- [Commits](Nukesor/comfy-table@v7.1.0...v7.1.1)

Updates `tempfile` from 3.8.1 to 3.10.1
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.8.1...v3.10.1)

Updates `itertools` from 0.12.0 to 0.12.1
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.0...v0.12.1)

Updates `rusqlite` from 0.30.0 to 0.31.0
- [Release notes](https://github.com/rusqlite/rusqlite/releases)
- [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md)
- [Commits](rusqlite/rusqlite@v0.30.0...v0.31.0)

Updates `toml` from 0.8.8 to 0.8.12
- [Commits](toml-rs/toml@toml-v0.8.8...toml-v0.8.12)

Updates `indicatif` from 0.17.7 to 0.17.8
- [Release notes](https://github.com/console-rs/indicatif/releases)
- [Commits](console-rs/indicatif@0.17.7...0.17.8)

Updates `metaheuristics-nature` from 9.2.3 to 10.0.1
- [Commits](KmolYuan/metaheuristics-nature-rs@v9.2.3...v10.0.1)

---
updated-dependencies:
- dependency-name: crossbeam
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: getrandom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: nalgebra
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rapier2d-f64
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wasmer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: wide
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wasmer-compiler-cranelift
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: js-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wasm-bindgen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wasm-bindgen-futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rayon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: test-log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serial_test
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: maths-rs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: base64
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: built
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: axum
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tower-http
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: http
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: comfy-table
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rusqlite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: indicatif
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: metaheuristics-nature
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 19, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 22, 2024

Superseded by #134.

@dependabot dependabot bot closed this Apr 22, 2024
@dependabot dependabot bot deleted the dependabot/cargo/all-a3356b2930 branch April 22, 2024 06:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants