serpent-os / moss

The safe, fast and sane package manager for Linux
https://serpentos.com
71 stars 9 forks source link

build(deps): bump the cargo group across 1 directory with 7 updates #245

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the cargo group with 7 updates in the / directory:

Package From To
chrono 0.4.37 0.4.38
diesel 2.1.5 2.1.6
petgraph 0.6.4 0.6.5
serde 1.0.197 1.0.201
serde_json 1.0.115 1.0.117
thiserror 1.0.58 1.0.60
tokio-util 0.7.10 0.7.11

Updates chrono from 0.4.37 to 0.4.38

Release notes

Sourced from chrono's releases.

v0.4.38

This release bring a ca. 20% improvement to the performance of the formatting code, and a convenient days_since method for the Weekday type.

Chrono 0.4.38 also removes the long deprecated rustc-serialize feature. Support for rustc-serialize will be soft-destabilized in the next Rust edition. Removing the feature will not break existing users of the feature; Cargo will just not update dependents that rely on it to newer versions of chrono.

In chrono 0.4.36 we made an accidental breaking change by switching to derive(Copy) for DateTime instead of a manual implementation. It is reverted in this release.

Removals

Additions

Fixes

  • Return error when rounding with a zero duration (#1474, thanks @​Dav1dde)
  • Manually implement Copy for DateTime if offset is Copy (#1573)

Internal

  • Inline test_encodable_json and test_decodable_json functions (#1550)
  • CI: Reduce combinations in cargo hack check (#1553)
  • Refactor formatting code (#1335)
  • Optimize number formatting (#1558)
  • Only package files needed for building and testing (#1554)

Thanks to all contributors on behalf of the chrono team, @​djc and @​pitdicker!

Commits
  • 352a352 Prepare 0.4.38
  • 46d44d6 Manually implement Copy for DateTime if offset is Copy
  • 760eb66 Update windows-bindgen requirement from 0.55 to 0.56
  • 391187f Return error when rounding with zero duration
  • ffc75e5 Add TimeDelta::checked_mul and TimeDelta::checked_div
  • f8cecbe Make Weekday::num_days_from public, rename to days_since.
  • 0cfc405 Optimize number formatting
  • 74ba83b Take pad by value
  • 78e79db Match on tuples in format_fixed
  • f3d76c7 Match on tuples in format_numeric
  • Additional commits viewable in compare view


Updates diesel from 2.1.5 to 2.1.6

Changelog

Sourced from diesel's changelog.

[2.1.6] 2024-04-19

  • Fix using BoxableExpression with having clauses
  • Fix using numeric expressions with aliased fields
  • Minor documentation fixes
Commits
  • 26c6be4 Preapare a diesel 2.1.6 patch release
  • 2dc6cc1 Merge pull request #3956 from Tanguille/docs/clarify-as-expression-to-sql
  • ca66173 Merge pull request #3980 from kornelski/dev-cycle
  • 45915ac Merge pull request #3971 from Ten0/fix_missing_skip_insertion_attribute_in_un...
  • 26b8803 Merge pull request #3979 from formlogic-kirk/alias_op_impls
  • 6a9bfdf Fix the having clause tests + add a test for normal select queries
  • 0799a44 Add ValidGrouping to boxed having expression
  • 5d6637f Try explicitly implementing FromClause<F> for HavingDsl<Predicate>
  • b4776a3 Add test
  • See full diff in compare view


Updates petgraph from 0.6.4 to 0.6.5

Changelog

Sourced from petgraph's changelog.

Version 0.6.5 (2024-05-06)

  • Add rayon support for GraphMap ([#573](https://github.com/petgraph/petgraph/issues/573), [#615](https://github.com/petgraph/petgraph/issues/615))
  • Add Topo::with_initials method ([#585](https://github.com/petgraph/petgraph/issues/585)_)
  • Add logo to the project ([#598](https://github.com/petgraph/petgraph/issues/598)_)
  • Add Ford-Fulkerson algorithm ([#640](https://github.com/petgraph/petgraph/issues/640)_)
  • Update itertools to 0.12.1 ([#628](https://github.com/petgraph/petgraph/issues/628)_)
  • Update GraphMap to allow custom hash functions ([#623](https://github.com/petgraph/petgraph/issues/623)_)
  • Fix documentation ([#630](https://github.com/petgraph/petgraph/issues/630)_)
  • Fix clippy warnings ([#627](https://github.com/petgraph/petgraph/issues/627)_)
  • (internal) Fix remove old copyclone macro ([#601](https://github.com/petgraph/petgraph/issues/601)_)
  • (internal) Move minimum spanning tree into own module ([#624](https://github.com/petgraph/petgraph/issues/624)_)

.. _[#573](https://github.com/petgraph/petgraph/issues/573): petgraph/petgraph#573 .. _[#615](https://github.com/petgraph/petgraph/issues/615): petgraph/petgraph#615 .. _[#585](https://github.com/petgraph/petgraph/issues/585): petgraph/petgraph#585 .. _[#598](https://github.com/petgraph/petgraph/issues/598): petgraph/petgraph#598 .. _[#640](https://github.com/petgraph/petgraph/issues/640): petgraph/petgraph#640 .. _[#628](https://github.com/petgraph/petgraph/issues/628): petgraph/petgraph#628 .. _[#623](https://github.com/petgraph/petgraph/issues/623): petgraph/petgraph#623 .. _[#630](https://github.com/petgraph/petgraph/issues/630): petgraph/petgraph#630 .. _[#627](https://github.com/petgraph/petgraph/issues/627): petgraph/petgraph#627 .. _[#601](https://github.com/petgraph/petgraph/issues/601): petgraph/petgraph#601 .. _[#624](https://github.com/petgraph/petgraph/issues/624): petgraph/petgraph#624

Commits


Updates serde from 1.0.197 to 1.0.201

Release notes

Sourced from serde's releases.

v1.0.201

  • Resolve unexpected_cfgs warning (#2737)

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)

v1.0.198

Commits
  • b4f1bc1 Release 1.0.201
  • 029ab46 Merge pull request #2737 from dtolnay/checkcfg
  • 220ca0c Resolve unexpected_cfgs warning
  • 20306f4 Fix cfg on test_systemtime_overflow
  • cc865ac Release 1.0.200
  • 2d973c1 Merge pull request #2733 from jamessan/nan-decimal
  • 6ca499b Only format Unexpected::Float with decimal point if it is finite
  • 1477028 Release 1.0.199
  • 789740b Merge pull request #2732 from aatifsyed/master
  • 8fe7539 fix: ambiguous associated type in forward_to_deserialize_any!
  • Additional commits viewable in compare view


Updates serde_json from 1.0.115 to 1.0.117

Release notes

Sourced from serde_json's releases.

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)

v1.0.116

Commits
  • 0ae247c Release 1.0.117
  • 4517c7a PartialEq is not implemented between Value and 128-bit ints
  • fdf99c7 Combine number PartialEq tests
  • b4fc245 Merge pull request #1130 from serde-rs/checkcfg
  • 98f1a24 Resolve unexpected_cfgs warning
  • a3f62bb Release 1.0.116
  • 12c8ee0 Hide "non-exhaustive patterns" errors when crate fails to compile
  • 051ce97 Merge pull request 1124 from mleonhard/master
  • 25dc750 Replace features_check mod with a call to std::compile_error!. Fixes htt...
  • 2e15e3d Revert "Temporarily disable miri on doctests"
  • Additional commits viewable in compare view


Updates thiserror from 1.0.58 to 1.0.60

Release notes

Sourced from thiserror's releases.

1.0.60

  • Resolve unexpected_cfgs warning (#298)

1.0.59

  • Unblock testing of rustc debug-fmt-detail option (#297)
Commits
  • 870d11b Release 1.0.60
  • 0ccee7c Merge pull request #298 from dtolnay/checkcfg
  • cf43d0c Resolve unexpected_cfgs warning
  • e7ad85e Release 1.0.59
  • af477ec Merge pull request #297 from dtolnay/traitident
  • f3fbd99 Implement ToTokens without reliance on {:?}
  • 508ece8 Revert "Temporarily disable miri on doctests"
  • c8c804c Explicitly install a Rust toolchain for cargo-outdated job
  • 6969595 Merge pull request #293 from dtolnay/workspacewrapper
  • 488d52f Apply RUSTC_WORKSPACE_WRAPPER
  • Additional commits viewable in compare view


Updates tokio-util from 0.7.10 to 0.7.11

Commits
  • cdf9d99 chore: prepare tokio-util v0.7.11 (#6535)
  • f6eb1ee time: lazily init timers on first poll (#6512)
  • b7d4fba sync: add mpsc::Receiver::{capacity,max_capacity} (#6511)
  • 3c8d8e6 chore: fix latest rust-1.78.0 warnings (#6528)
  • e971a5e util: use FIFO ordering in WakeList (#6521)
  • 28439e2 time: clean up implementation (#6517)
  • d33fdd8 time: check for overflow in Interval::poll_tick (#6487)
  • 731dde2 runtime: clarify misleading use of UnsafeCell::with_mut (#6513)
  • 9ed5957 wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#6510)
  • a73d6bf macros: #[cfg(not(test))] is no longer necessary for main macros (#6508)
  • Additional commits viewable in compare view


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 1 month ago

Superseded by #247.