m4tx / tundra

MyAnimeList scrobbler for Linux
https://tundra.moe
GNU General Public License v3.0
53 stars 2 forks source link

chore(deps): bump the dependencies group with 11 updates #126

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the dependencies group with 11 updates:

Package From To
anyhow 1.0.81 1.0.82
async-channel 2.2.0 2.2.1
async-trait 0.1.79 0.1.80
chrono 0.4.37 0.4.38
gio 0.19.3 0.19.5
glib 0.19.3 0.19.5
hyper 1.2.0 1.3.1
notify-rust 4.10.0 4.11.0
reqwest 0.12.2 0.12.4
serde 1.0.197 1.0.199
serde_json 1.0.115 1.0.116

Updates anyhow from 1.0.81 to 1.0.82

Release notes

Sourced from anyhow's releases.

1.0.82

  • Documentation improvements
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 async-channel from 2.2.0 to 2.2.1

Release notes

Sourced from async-channel's releases.

v2.2.1

  • Fix the CI badge in the crates.io page. (#84)
Changelog

Sourced from async-channel's changelog.

Version 2.2.1

  • Fix the CI badge in the crates.io page. (#84)
Commits


Updates async-trait from 0.1.79 to 0.1.80

Release notes

Sourced from async-trait's releases.

0.1.80

  • Fix unreachable code warning for async functions that return ! (#265, thanks @​de-vri-es)
Commits
  • d528b5a Release 0.1.80
  • 10b5c99 Drop support for compilers older than 1.47
  • 83a5422 Drop support for compilers older than 1.45
  • 22d017e Build script no longer looks at $DOCS_RS
  • b64d041 Move never_type test under issue266
  • b683da8 Merge pull request #265 from de-vri-es/fix-unreachable-code-warning
  • c8d958d Fix unreachable code warning for functions that return !
  • 4f0b72e Explicitly install a Rust toolchain for cargo-outdated job
  • See full diff in compare view


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 gio from 0.19.3 to 0.19.5

Release notes

Sourced from gio's releases.

0.19.5

Bilal Elmoussaoui:
      Revert "glib: Auto generate various win32 functions"
      glib/gio: Remove no longer used version/ignore
      glib: Ignore new unsafe functions

Fina Wilke: glib-macros/properties: Allow structs with no properties glib::wrapper: Add docs for impls generated by the wrapper macro

Kévin Commaille: glib-macros: Improve error message when Properties struct doesn't have at least one #[property(…)]

Sebastian Dröge: Update version to 0.19.4 Update gir Update gir-files Regenerate with updated gir / gir-files glib: Use time_t correctly for manual bindings glib-sys: Map glib_sys::GPid directly to libc::pid_t gio-sys: Hide UNIX specific Credentials API on Windows gio: Use correct types for UNIX-specific Credentials API glib: Freeze property notifications while setting multiple properties ci: Enable glib-sys / gobject-sys tests Update Cargo.lock ci: Update gvsbuild git reference glib: Re-add and rename manual Win32 API additions Update versions to 0.19.5

liushuyu: glib-sys: remove the redundant ignore = true line glib-sys: fix manual.h header to include proper headers ... glib-sys: remove deprecated lock types ... glib-sys: re-generate bindings and tests

0.19.4

Bilal Elmoussaoui:
      Fix nightly clippy warnings
      gio: Stop re-exporting all the types in prelude
      gio: Move guards to trait definitions
      gio/socket: Replace c_int import with full qualifier
      gio/tests: Guard variable that is used on windows only builds
      typos: Ignore guid false-positive

Fabio Valentini: glib: fix UB in VariantStrIter::impl_get

</tr></table>

... (truncated)

Commits
  • a7c5a9b Update versions to 0.19.5
  • 3faf86f Merge pull request #1371 from sdroege/0.19-backports
  • d24b34c glib::wrapper: Add docs for impls generated by the wrapper macro
  • ef4747d glib: Re-add and rename manual Win32 API additions
  • 2a19d9c ci: Update gvsbuild git reference
  • dad0fc8 build(deps): bump peaceiris/actions-gh-pages from 3 to 4
  • 949dde2 Update Cargo.lock
  • fafa11a glib-macros/properties: Allow structs with no properties
  • b530e4a ci: Enable glib-sys / gobject-sys tests
  • f0dd7ef glib-sys: re-generate bindings and tests
  • Additional commits viewable in compare view


Updates glib from 0.19.3 to 0.19.5

Release notes

Sourced from glib's releases.

0.19.5

Bilal Elmoussaoui:
      Revert "glib: Auto generate various win32 functions"
      glib/gio: Remove no longer used version/ignore
      glib: Ignore new unsafe functions

Fina Wilke: glib-macros/properties: Allow structs with no properties glib::wrapper: Add docs for impls generated by the wrapper macro

Kévin Commaille: glib-macros: Improve error message when Properties struct doesn't have at least one #[property(…)]

Sebastian Dröge: Update version to 0.19.4 Update gir Update gir-files Regenerate with updated gir / gir-files glib: Use time_t correctly for manual bindings glib-sys: Map glib_sys::GPid directly to libc::pid_t gio-sys: Hide UNIX specific Credentials API on Windows gio: Use correct types for UNIX-specific Credentials API glib: Freeze property notifications while setting multiple properties ci: Enable glib-sys / gobject-sys tests Update Cargo.lock ci: Update gvsbuild git reference glib: Re-add and rename manual Win32 API additions Update versions to 0.19.5

liushuyu: glib-sys: remove the redundant ignore = true line glib-sys: fix manual.h header to include proper headers ... glib-sys: remove deprecated lock types ... glib-sys: re-generate bindings and tests

0.19.4

Bilal Elmoussaoui:
      Fix nightly clippy warnings
      gio: Stop re-exporting all the types in prelude
      gio: Move guards to trait definitions
      gio/socket: Replace c_int import with full qualifier
      gio/tests: Guard variable that is used on windows only builds
      typos: Ignore guid false-positive

Fabio Valentini: glib: fix UB in VariantStrIter::impl_get

</tr></table>

... (truncated)

Commits
  • a7c5a9b Update versions to 0.19.5
  • 3faf86f Merge pull request #1371 from sdroege/0.19-backports
  • d24b34c glib::wrapper: Add docs for impls generated by the wrapper macro
  • ef4747d glib: Re-add and rename manual Win32 API additions
  • 2a19d9c ci: Update gvsbuild git reference
  • dad0fc8 build(deps): bump peaceiris/actions-gh-pages from 3 to 4
  • 949dde2 Update Cargo.lock
  • fafa11a glib-macros/properties: Allow structs with no properties
  • b530e4a ci: Enable glib-sys / gobject-sys tests
  • f0dd7ef glib-sys: re-generate bindings and tests
  • Additional commits viewable in compare view


Updates hyper from 1.2.0 to 1.3.1

Release notes

Sourced from hyper's releases.

v1.3.1

Bug Fixes

  • client: revert auto content-length header for some requests (#3633)

v1.3.0

Bug Fixes

  • client: send content-length even with no body (172fdfaf)
  • http2:
    • max_header_list_size(num) defaults to 16kb (203d1b09)
    • initial_max_send_streams defaults to 100 (2d1bd708)
  • server:
    • avoid unwrapping for the Future impl of HTTP/1 UpgradeableConnection (#3627) (b79be911, closes #3621)
    • avoid graceful_shutdown panic on upgraded H1 connection (#3616) (6ecf8521)

Features

  • client:
    • add max_header_list_size(num) to http2::Builder. (1c5b1b87)
    • add max_pending_accept_reset_streams HTTP2 option (#3617) (330ddf1d)
  • ext: implement From ReasonPhrase for Bytes (dc27043a)
  • service: expose Service and HttpService trait unconditionally (6aee2e6e)
  • server: relax 'static from connection IO trait bounds (#3595) (0013bdda)

New Contributors

Full Changelog: https://github.com/hyperium/hyper/compare/v1.2.0...v1.3.0

Changelog

Sourced from hyper's changelog.

v1.3.1 (2024-04-16)

Bug Fixes

  • client: revert auto content-length header for some requests (#3633)

v1.3.0 (2024-04-15)

Bug Fixes

  • client: send content-length even with no body (172fdfaf)
  • http2:
    • max_header_list_size(num) defaults to 16kb (203d1b09)
    • initial_max_send_streams defaults to 100 (2d1bd708)
  • server:
    • avoid unwrapping for the Future impl of HTTP/1 UpgradeableConnection (#3627) (b79be911, closes #3621)
    • avoid graceful_shutdown panic on upgraded H1 connection (#3616) (6ecf8521)

Features

  • client:
    • add max_header_list_size(num) to http2::Builder. (1c5b1b87)
    • add max_pending_accept_reset_streams HTTP2 option (#3617) (330ddf1d)
  • ext: implement From ReasonPhrase for Bytes (dc27043a)
  • service: expose Service and HttpService trait unconditionally (6aee2e6e)
  • server: relax 'static from connection IO trait bounds (#3595) (0013bdda)
Commits
  • c78379e v1.3.1
  • 3705a7e Revert "fix(client): send content-length even with no body"
  • d53305a v1.3.0
  • dc27043 feat(ext): implement From ReasonPhrase for Bytes
  • 6aee2e6 feat(service): expose Service and HttpService trait unconditionally
  • 172fdfa fix(client): send content-length even with no body
  • b79be91 fix(server): avoid unwrapping for the Future impl of HTTP/1 `UpgradeableCon...
  • 203d1b0 fix(http2): max_header_list_size(num) defaults to 16kb
  • 1c5b1b8 feat(client): add max_header_list_size(num) to http2::Builder.
  • df33d4d refactor(h1): use UninitSlice::as_uninit_slice_mut() instead of cast (#3618)
  • Additional commits viewable in compare view


Updates notify-rust from 4.10.0 to 4.11.0

Changelog

Sourced from notify-rust's changelog.

v4.11.0 (2024-04-04)

Features

Fixes

  • deps: update rust crate image to 0.25 (c453121)
  • deps: update rust crate env_logger to 0.11 (656a915)
  • deps: update rust crate winrt-notification to 0.2 (730d563)
Commits
  • 309a109 chore: bump version
  • f50a46c Merge pull request #187 from hoodie/renovate/color-backtrace-0.x
  • 81cbdc9 chore(deps): update rust crate color-backtrace to 0.6
  • c453121 fix(deps): update rust crate image to 0.25
  • 656a915 fix(deps): update rust crate env_logger to 0.11
  • 730d563 fix(deps): update rust crate winrt-notification to 0.2
  • 97b1571 ci: require only building on 2 most recent compilers for zbus 4 on linux
  • 9683d01 feat: update to zbus v4
  • c0ffee4 chore: fix beta clippy warnings
  • 996953c Merge pull request #197 from hoodie/feature/ci
  • Additional commits viewable in compare view


Updates reqwest from 0.12.2 to 0.12.4

Release notes

Sourced from reqwest's releases.

v0.12.4

What's Changed

  • Add zstd support, enabled with zstd Cargo feature (thanks @​paolobarbolini!)
  • Add ClientBuilder::read_timeout(Duration), which applies the duration for each read operation. The timeout resets after a successful read.

New Contributors

v0.12.3

What's Changed

  • Add FromStr for dns::Name.
  • Add ClientBuilder::built_in_webpki_certs(bool) to enable them separately.
  • Add ClientBuilder::built_in_native_certs(bool) to enable them separately.
  • Fix sending content-length: 0 for GET requests.
  • Fix response body content_length() to return value when timeout is configured.
  • Fix ClientBuilder::resolve() to use lowercase domain names.

New Contributors

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.2...v0.12.3

Changelog

Sourced from reqwest's changelog.

v0.12.4

  • Add zstd support, enabled with zstd Cargo feature.
  • Add ClientBuilder::read_timeout(Duration), which applies the duration for each read operation. The timeout resets after a successful read.

v0.12.3

  • Add FromStr for dns::Name.
  • Add ClientBuilder::built_in_webpki_certs(bool) to enable them separately.
  • Add ClientBuilder::built_in_native_certs(bool) to enable them separately.
  • Fix sending content-length: 0 for GET requests.
  • Fix response body content_length() to return value when timeout is configured.
  • Fix ClientBuilder::resolve() to use lowercase domain names.
Commits
  • de5dbb1 v0.12.4
  • 0f126f5 tests: fix blocking test about empty bodies and content-length
  • 1073881 feat: add zstd support (#1866)
  • 1af8945 feat: add ClientBuilder::read_timeout(dur) (#2241)
  • e99da85 refactor: fix warnings related to mutability of self (#2245)
  • 0720159 v0.12.3
  • 9209695 Remove duplicate example for ClientBuilder::default_headers (#2236)
  • e3a1565 fix: use lower case domain string when using resolve and resolve_to_addrs...
  • b4c491a feat: allow fine-grained root certs for rustls (#2232)
  • cf4295d chore: update winreg to 0.52.0 (#2226)
  • Additional commits viewable in compare view


Updates serde from 1.0.197 to 1.0.199

Release notes

Sourced from serde's releases.

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
  • 1477028 Release 1.0.199
  • 789740b Merge pull request #2732 from aatifsyed/master
  • 8fe7539 fix: ambiguous associated type in forward_to_deserialize_any!
  • f6623a3 Ignore cast_precision_loss pedantic clippy lint
  • 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"
  • Additional commits viewable in compare view


Updates serde_json from 1.0.115 to 1.0.116

Release notes

Sourced from serde_json's releases.

v1.0.116

Commits
  • 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"
  • 0baba28 Resolve legacy_numeric_constants clippy lints
  • See full diff 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