rlane / oort3

A space fleet programming game
https://oort.rs
GNU General Public License v3.0
296 stars 23 forks source link

build(deps): bump the all group with 34 updates #125

Closed dependabot[bot] closed 7 months ago

dependabot[bot] commented 7 months ago

Bumps the all group with 34 updates:

Package From To
crossbeam 0.8.3 0.8.4
getrandom 0.2.11 0.2.12
log 0.4.20 0.4.21
nalgebra 0.32.3 0.32.4
rapier2d-f64 0.17.2 0.18.0
serde 1.0.193 1.0.197
wasmer 4.2.5 4.2.6
bytes 1.5.0 1.6.0
wide 0.7.13 0.7.15
anyhow 1.0.77 1.0.81
regex 1.10.2 1.10.4
wasmer-compiler-cranelift 4.2.5 4.2.6
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.114
serial_test 2.0.0 3.0.0
maths-rs 0.2.5 0.2.6
chrono 0.4.31 0.4.35
base64 0.21.5 0.22.0
reqwest 0.11.23 0.11.27
tokio 1.35.1 1.36.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.3
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.0

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.12

Changelog

Sourced from getrandom's changelog.

[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.4

Changelog

Sourced from nalgebra's changelog.

[0.32.4] (19 Feb 2023)

  • 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.197

Release notes

Sourced from serde's releases.

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
  • 5fa711d Release 1.0.197
  • f5d8ae4 Resolve prelude redundant import warnings
  • 1d54973 Merge pull request #2697 from nyurik/format-str
  • b8fafef A few minor write_str optimizations and inlining
  • c42ebb8 Update ui test suite to nightly-2024-02-12
  • 9e68062 Ignore incompatible_msrv clippy lint for conditionally compiled code
  • 846f865 Ignore dead_code warnings in test
  • ede9762 Release 1.0.196
  • d438c2d Merge pull request #2682 from dtolnay/decimalpoint
  • bef110b Format Unexpected::Float with decimal point
  • Additional commits viewable in compare view


Updates wasmer from 4.2.5 to 4.2.6

Release notes

Sourced from wasmer's releases.

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.6 - 03/03/2024

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

Added

  • #4459 feat(backend-api): Add download_url to PackageDistribution
  • #4460 fix(cli): Add missing output in "app get" command and fix output of "app info"
  • #4448 Add wasi-fyi tests and run them in CI
  • #4454 add pagination to app list queries
  • #4443 feat(backend-api): Add get_app_by_id_opt
  • #4385 feat(api): Add SharedMemoryHandle
  • #3517 Add HTTP example which does dynamic allocation

Changed

  • #4472 feat(cli): "wasmer deploy": return app version as json if --json specified
  • #4471 chore: Remove wasi-experimental-io-devices
  • #4466 Clean up wasmer-wasix-types and remove wasix-http-client
  • #4458 tests: Disable flaky network tests on MUSL
  • #4440 cli: allow filtering by log stream
  • #4435 Use M1 runner for building & testing m1
  • #4434 Update Rust toolchain to 1.73
  • #4428 Try to build the package before publishing it
  • #4441 increase pagination size for app logs
  • #4429 Return Notsup for absolute symlinks instead of panicking
  • #4427 Migrate deprecated usage
  • #4426 deps: Unify wasmparser usage to a single version
  • #4292 deps: Upgrade wasmparser
  • #4398 Make public API consistent
  • #4407 CLI: Big CLI cleanup + merge Edge CLI
  • #4395 chore(wasix): Increase log level for WapmSource
  • #4403 Allow users to provide custom host functions to WasiRunner and WasiEnvBuilder
  • #4359 Use nanoseconds in filestat for directories
  • #4100 Tweak logging annotations to simplify performance troubleshooting
  • #4175 Update dependencies and remove unused dependencies
  • #4302 Allow WasiRunner to mount FileSystem instances
  • #4394 ignore append when truncate is set
  • #4263 WASI journal and stateful persistence
  • #4389 remove memory footprint computation
  • #4352 Wait for webc, bindings, exe generation during package-publish with --wait flag
  • #4388 Temporarily exclude tokio from docs builds
  • #4345 Asyncify filesystem cache

Fixed

  • #4467 fix(cli): Fix auto-package version bumping in 'wasmer deploy'
  • #4452 CLI: Fix logic error in indexing in app logs command
  • #4444 Fix note about unaligned references in WasmRef docs
  • #4338 [SINGLEPASS]Fix bug #4092 which was due to resource leak while doing …

... (truncated)

Commits
  • f295481 Merge pull request #4474 from wasmerio/release-4.2.6
  • 552f6ed Revert to using older clap, normpath version that works with rustc 1.73
  • 03ca2dc Update 0.x package versions
  • ec7dd46 Update changelog
  • 209968b Release 4.2.6
  • f4faeb7 Update CHANGELOG
  • c389b88 feat(cli): "wasmer deploy": return app version as json if --json specified
  • df79e8d Merge pull request #4471 from wasmerio/remove-experimental-io
  • 7d80149 chore: Remove wasi-experimental-io-devices
  • 2b56441 Merge pull request #4466 from wasmerio/wai-cleanup
  • Additional commits viewable in compare view


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.15

Commits


Updates anyhow from 1.0.77 to 1.0.81

Release notes

Sourced from anyhow's releases.

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
  • 4aad4ed Release 1.0.81
  • 8be9091 Merge pull request #354 from dtolnay/deadcode
  • a2eb7dd Make compatible with -Dwarnings
  • 5443719 Release 1.0.80
  • dfc7bc0 Work around prelude redundant import warnings
  • 6e4f86b Import from alloc not std, where possible
  • f885a13 Ignore incompatible_msrv clippy false positives in test
  • fefbcbc Ignore incompatible_msrv clippy lint
  • 78f2d81 Update ui test suite to nightly-2024-02-08
  • edd88d3 Update ui test suite to nightly-2024-01-31
  • 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.6

Release notes

Sourced from wasmer-compiler-cranelift's releases.

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.6 - 03/03/2024

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

Added

  • #4459 feat(backend-api): Add download_url to PackageDistribution
  • #4460 fix(cli): Add missing output in "app get" command and fix output of "app info"
  • #4448 Add wasi-fyi tests and run them in CI
  • #4454 add pagination to app list queries
  • #4443 feat(backend-api): Add get_app_by_id_opt
  • #4385 feat(api): Add SharedMemoryHandle
  • #3517 Add HTTP example which does dynamic allocation

Changed

  • #4472 feat(cli): "wasmer deploy": return app version as json if --json specified
  • #4471 chore: Remove wasi-experimental-io-devices
  • #4466 Clean up wasmer-wasix-types and remove wasix-http-client
  • #4458 tests: Disable flaky network tests on MUSL
  • #4440 cli: allow filtering by log stream
  • #4435 Use M1 runner for building & testing m1
  • #4434 Update Rust toolchain to 1.73
  • #4428 Try to build the package before publishing it
  • #4441 increase pagination size for app logs
  • #4429 Return Notsup for absolute symlinks instead of panicking
  • #4427 Migrate deprecated usage
  • #4426 deps: Unify wasmparser usage to a single version
  • #4292 deps: Upgrade wasmparser
  • #4398 Make public API consistent
  • #4407 CLI: Big CLI cleanup + merge Edge CLI
  • #4395 chore(wasix): Increase log level for WapmSource
  • #4403 Allow users to provide custom host functions to WasiRunner and WasiEnvBuilder
  • #4359 Use nanoseconds in filestat for directories
  • #4100 Tweak logging annotations to simplify performance troubleshooting
  • #4175 Update dependencies and remove unused dependencies
  • #4302 Allow WasiRunner to mount FileSystem instances
  • #4394 ignore append when truncate is set
  • #4263 WASI journal and stateful persistence
  • #4389 remove memory footprint computation
  • #4352 Wait for webc, bindings, exe generation during package-publish with --wait flag
  • #4388 Temporarily exclude tokio from docs builds
  • #4345 Asyncify filesystem cache

Fixed

  • #4467 fix(cli): Fix auto-package version bumping in 'wasmer deploy'
  • #4452 CLI: Fix logic error in indexing in app logs command
  • #4444 Fix note about unaligned references in WasmRef docs
  • #4338 [SINGLEPASS]Fix bug #4092 which was due to resource leak while doing …

... (truncated)

Commits
  • f295481 Merge pull request #4474 from wasmerio/release-4.2.6
  • 552f6ed Revert to using older clap, normpath version that works with rustc 1.73
  • 03ca2dc Update 0.x package versions
  • ec7dd46 Update changelog
  • 209968b Release 4.2.6
  • f4faeb7 Update CHANGELOG
  • c389b88 feat(cli): "wasmer deploy": return app version as json if --json specified
  • df79e8d Merge pull request #4471 from wasmerio/remove-experimental-io
  • 7d80149 chore: Remove wasi-experimental-io-devices
  • 2b56441 Merge pull request #4466 from wasmerio/wai-cleanup
  • Additional commits viewable in compare view


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


Updates rayon from 1.8.0 to 1.10.0

Changelog

Sourced from rayon's changelog.

Release rayon 1.10.0 (2024-03-23)

  • The new methods ParallelSlice::par_chunk_by and ParallelSliceMut::par_chunk_by_mut work like the slice methods chunk_by and chunk_by_mut added in Rust 1.77.

Release rayon 1.9.0 (2024-02-27)

  • The new methods IndexedParallelIterator::by_exponential_blocks and by_uniform_blocks allow processing items in smaller groups at a time.
  • The new iter::walk_tree, walk_tree_prefix, and walk_tree_postfix functions enable custom parallel iteration over tree-like structures.
  • The new method ParallelIterator::collect_vec_list returns items as a linked list of vectors, which is an efficient mode of parallel collection used by many of the internal implementations of collect.
  • The new methods ParallelSliceMut::par_split_inclusive_mut, ParallelSlice::par_split_inclusive, and ParallelString::par_split_i... _Description has been truncated_
dependabot[bot] commented 7 months ago

Superseded by #127.