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

chore(deps): bump the all-updates group across 1 directory with 71 updates #157

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

Bumps the all-updates group with 55 updates in the / directory:

Package From To
chrono 0.4.38 0.4.39
serde 1.0.215 1.0.217
thiserror 2.0.3 2.0.9
tokio 1.41.1 1.42.0
quick-xml 0.37.1 0.37.2
reqwest 0.12.9 0.12.12
serde_json 1.0.133 1.0.134
clap 4.5.21 4.5.23
clap_complete 4.5.38 4.5.40
console 0.15.8 0.15.10
glob 0.3.1 0.3.2
tracing-subscriber 0.3.18 0.3.19
anyhow 1.0.93 1.0.95
predicates 3.1.2 3.1.3
allocator-api2 0.2.20 0.2.21
bstr 1.11.0 1.11.1
bytes 1.8.0 1.9.0
cc 1.2.1 1.2.6
compact_str 0.8.0 0.8.1
crossbeam-channel 0.5.13 0.5.14
crossbeam-deque 0.8.5 0.8.6
crossbeam-utils 0.8.20 0.8.21
errno 0.3.9 0.3.10
fastrand 2.2.0 2.3.0
foldhash 0.1.3 0.1.4
http 1.1.0 1.2.0
hyper 1.5.1 1.5.2
hyper-rustls 0.27.3 0.27.5
indexmap 2.6.0 2.7.0
instability 0.3.3 0.3.5
itoa 1.0.13 1.0.14
js-sys 0.3.72 0.3.76
libc 0.2.164 0.2.169
miniz_oxide 0.8.0 0.8.2
mio 1.0.2 1.0.3
object 0.36.5 0.36.7
predicates-core 1.0.8 1.0.9
predicates-tree 1.0.11 1.0.12
quinn-udp 0.5.7 0.5.9
quote 1.0.37 1.0.38
redox_syscall 0.5.7 0.5.8
rustc-hash 2.0.0 2.1.0
rustix 0.38.41 0.38.42
rustls 0.23.18 0.23.20
rustls-pki-types 1.10.0 1.10.1
rustversion 1.0.18 1.0.19
scc 2.2.5 2.3.0
sdd 3.0.4 3.0.5
socket2 0.5.7 0.5.8
time 0.3.36 0.3.37
tinyvec 1.8.0 1.8.1
tokio-rustls 0.26.0 0.26.1
tokio-stream 0.1.16 0.1.17
wasm-bindgen-futures 0.4.45 0.4.49
winnow 0.6.20 0.6.21

Updates chrono from 0.4.38 to 0.4.39

Release notes

Sourced from chrono's releases.

0.4.39

What's Changed

Commits

Updates serde from 1.0.215 to 1.0.217

Release notes

Sourced from serde's releases.

v1.0.217

  • Support serializing externally tagged unit variant inside flattened field (#2786, thanks @​Mingun)

v1.0.216

  • Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @​tdittr)
Commits
  • 930401b Release 1.0.217
  • cb6eaea Fix roundtrip inconsistency:
  • b6f339c Resolve repr_packed_without_abi clippy lint in tests
  • 2a5caea Merge pull request #2872 from dtolnay/ehpersonality
  • b9f93f9 Add no-std CI on stable compiler
  • eb5cd47 Drop #[lang = "eh_personality"] from no-std test
  • 8478a3b Merge pull request #2871 from dtolnay/nostdstart
  • dbb9091 Replace #[start] with extern fn main
  • ad8dd41 Release 1.0.216
  • f91d2ed Merge pull request #2868 from dtolnay/automaticallyderived
  • Additional commits viewable in compare view

Updates thiserror from 2.0.3 to 2.0.9

Release notes

Sourced from thiserror's releases.

2.0.9

  • Work around missing_inline_in_public_items clippy restriction being triggered in macro-generated code (#404)

2.0.8

  • Improve support for macro-generated derive(Error) call sites (#399)

2.0.7

  • Work around conflict with #[deny(clippy::allow_attributes)] (#397, thanks @​zertosh)

2.0.6

  • Suppress deprecation warning on generated From impls (#396)

2.0.5

  • Prevent deprecation warning on generated impl for deprecated type (#394)

2.0.4

  • Eliminate needless_lifetimes clippy lint in generated From impls (#391, thanks @​matt-phylum)
Commits

Updates tokio from 1.41.1 to 1.42.0

Release notes

Sourced from tokio's releases.

Tokio v1.42.0

1.42.0 (Dec 3rd, 2024)

Added

  • io: add AsyncFd::{try_io, try_io_mut} (#6967)

Fixed

  • io: avoid ptr->ref->ptr roundtrip in RegistrationSet (#6929)
  • runtime: do not defer yield_now inside block_in_place (#6999)

Changes

  • io: simplify io readiness logic (#6966)

Documented

  • net: fix docs for tokio::net::unix::{pid_t, gid_t, uid_t} (#6791)
  • time: fix a typo in Instant docs (#6982)

#6791: tokio-rs/tokio#6791 #6929: tokio-rs/tokio#6929 #6966: tokio-rs/tokio#6966 #6967: tokio-rs/tokio#6967 #6982: tokio-rs/tokio#6982 #6999: tokio-rs/tokio#6999

Commits

Updates quick-xml from 0.37.1 to 0.37.2

Release notes

Sourced from quick-xml's releases.

v0.37.2 - se::to_utf8_io_writer()

What's Changed

New Features

  • #836: Add se::to_utf8_io_writer() helper compatible with std::io::Write and restricted to UTF-8 encoding.

#836: tafia/quick-xml#836

New Contributors

Full Changelog: tafia/quick-xml@v0.37.1...v0.37.2

Changelog

Sourced from quick-xml's changelog.

0.37.2 -- 2024-12-29

New Features

  • #836: Add se::to_utf8_io_writer() helper compatible with std::io::Write and restricted to UTF-8 encoding.

#836: tafia/quick-xml#836

Commits
  • 52169ca Release 0.37.2
  • 9ad2010 Merge pull request #836 from pronebird/utf8writer
  • 3b5c74d Add to_utf8_io_writer accepting std::io::Write
  • 0793d6a Merge pull request #833 from Mingun/fix-serde-warnings
  • 65f57b2 Remove ignored tests which produces warnings since serde 1.0.215
  • See full diff in compare view

Updates reqwest from 0.12.9 to 0.12.12

Release notes

Sourced from reqwest's releases.

v0.12.11

What's Changed

Full Changelog: seanmonstar/reqwest@v0.12.10...v0.12.11

v0.12.10

What's Changed

New Contributors

Thanks

Full Changelog: seanmonstar/reqwest@v0.12.9...v0.12.10

Changelog

Sourced from reqwest's changelog.

v0.12.12

  • (wasm) Fix compilation by not compiler tokio/time on WASM.

v0.12.11

  • Fix decompression returning an error when HTTP/2 ends with an empty data frame.

v0.12.10

  • Add ClientBuilder::connector_layer() to allow customizing the connector stack.
  • Add ClientBuilder::http2_max_header_list_size() option.
  • Fix propagating body size hint (content-length) information when wrapping bodies.
  • Fix decompression of chunked bodies so the connections can be reused more often.
Commits

Updates serde_json from 1.0.133 to 1.0.134

Release notes

Sourced from serde_json's releases.

v1.0.134

  • Add RawValue associated constants for literal null, true, false (#1221, thanks @​bheylin)
Commits
  • b2a1415 Release 1.0.134
  • 9875785 Tweak wording of NULL/TRUE/FALSE documentation
  • 4aa05b9 Merge pull request #1222 from dtolnay/rawvalueassoc
  • f42c7c7 Move RawValue associated constants into same impl block as public functions
  • 96576ba Merge pull request #1221 from bheylin/add-const-raw-values-for-null-and-bools
  • 4db66fb Add 'static lifetime to const's
  • 9c9aa1f Add literal 'null', 'true' and 'false' consts to RawValue struct.
  • See full diff in compare view

Updates clap from 4.5.21 to 4.5.23

Release notes

Sourced from clap's releases.

v4.5.23

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

v4.5.22

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself
Changelog

Sourced from clap's changelog.

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself
Commits

Updates clap_complete from 4.5.38 to 4.5.40

Commits
  • cff27db chore: Release
  • 4ef4124 docs: Update changelog
  • ca89617 Merge pull request #5848 from jennings/jennings/push-xolwzyoornps
  • 99b6391 fix(complete): Fix PowerShell dynamic completion
  • ed2360f chore: Release
  • 196a14b docs: Update changelog
  • cd622ab Merge pull request #5846 from ribru17/alias_fn_dedup
  • 48ff72b fix(complete): Deduplicate bash subcmd cases
  • b1b6f17 Merge pull request #5843 from epage/link
  • 5900216 fix(derive): Update link for derive attributes
  • Additional commits viewable in compare view

Updates console from 0.15.8 to 0.15.10

Release notes

Sourced from console's releases.

0.15.10

What's Changed

0.15.9

What's Changed

Changelog

Sourced from console's changelog.

Changelog

Commits

Updates glob from 0.3.1 to 0.3.2

Release notes

Sourced from glob's releases.

v0.3.2

What's Changed

New Contributors

Full Changelog: rust-lang/glob@0.3.1...v0.3.2

Changelog

Sourced from glob's changelog.

0.3.2 - 2024-12-28

What's Changed

New Contributors

Full Changelog: rust-lang/glob@0.3.1...0.3.2

Commits
  • 58d0748 chore: release v0.3.2
  • 55b1be0 Merge pull request #150 from tgross35/release-plz
  • 56054d2 Add release-plz for automated releases
  • b93bca1 Merge pull request #151 from tgross35/fix-ci
  • 1dff477 Add a success job to CI for branch protection
  • 9bd1af8 Update CI runners to the latest available versions
  • 8c5d22c Check only (no longer test) at the MSRV
  • 89ef8a3 Clean up the CI configuration file
  • 49ee1e9 Merge pull request #140 from rust-lang/dependabot/github_actions/actions/chec...
  • 9c9f43f Bump actions/checkout from 3 to 4
  • Additional commits viewable in compare view

Updates tracing-subscriber from 0.3.18 to 0.3.19

Release notes

Sourced from tracing-subscriber's releases.

tracing-subscriber 0.3.19

[ [crates.io][crate-0.3.19] ] | [ [docs.rs][docs-0.3.19] ]

This release updates the tracing dependency to [v0.1.41][tracing-0.1.41] and the tracing-serde dependency to [v0.2.0][tracing-serde-0.2.0].

Added

  • Add set_span_events to fmt::Subscriber (#2962)
  • tracing: Allow &[u8] to be recorded as event/span field (#2954)

Changed

  • Set log max level when reloading (#1270)
  • Bump MSRV to 1.63 (#2793)
  • Use const thread_locals when possible (#2838)
  • Don't gate with_ansi() on the "ansi" feature (#3020)
  • Updated tracing-serde to 0.2.0 (#3160)

#1270: tokio-rs/tracing#1270 #2793: tokio-rs/tracing#2793 #2838: tokio-rs/tracing#2838 #2954: tokio-rs/tracing#2954 #2962: tokio-rs/tracing#2962 #3020: tokio-rs/tracing#3020 #3160: tokio-rs/tracing#3160 [tracing-0.1.41]: https://github.com/tokio-rs/tracing/releases/tag/tracing-0.1.41 [tracing-serde-0.2.0]: https://github.com/tokio-rs/tracing/releases/tag/tracing-serde-0.2.0 [docs-0.3.19]: https://docs.rs/tracing-subscriber/0.3.19/tracing_subscriber/ [crate-0.3.19]: https://crates.io/crates/tracing-subscriber/0.3.19

Commits

Updates anyhow from 1.0.93 to 1.0.95

Release notes

Sourced from anyhow's releases.

1.0.95

1.0.94

  • Documentation improvements
Commits
  • 48be1ca Release 1.0.95
  • a03d6d6 Merge pull request #402 from dtolnay/fromboxed
  • 52e4abb Add Error::from_boxed with documentation about bidirectional ?
  • ffecefc Merge pull request #401 from dtolnay/construct
  • 671f700 Add construct_ prefix to name of private construct functions
  • 8ceb5e9 Release 1.0.94
  • b9009ab Merge pull request #399 from dtolnay/okvalue
  • 863791a Align naming between Ok function argument and its documentation
  • 2081692 Merge pull request #398 from zertosh/ok_doc_format
  • cc2cecb Fix anyhow::Ok rustdoc code formatting
  • Additional commits viewable in compare view

Updates predicates from 3.1.2 to 3.1.3

Changelog

Sourced from predicates's changelog.

[3.1.3] - 2024-12-19

Features

  • The boxed function is now available for predicates with an Item type that is not Sized.
Commits
  • 40045bb chore: Release
  • 3480ad7 docs: Update changelog
  • 6db4ca3 Merge pull request #180 from marienz/master
  • 7cd735b feat: Implement PredicateBoxExt for ?Sized
  • 5bd6da7 chore(deps): Update Rust Stable to v1.83 (#179)
  • 3a0400e style: Make clippy happy
  • 4277197 chore: Update from _rust template
  • dabd07a Merge pull request #26 from futreall/main
  • 8100137 Update CONTRIBUTING.md
  • 006f98f chore(ci): Report deprecations in the review
  • Additional commits viewable in compare view

Updates allocator-api2 from 0.2.20 to 0.2.21

Commits

Updates bstr from 1.11.0 to 1.11.1

Commits

Updates bytes from 1.8.0 to 1.9.0

Release notes

Sourced from bytes's releases.

Bytes v1.9.0

1.9.0 (November 27, 2024)

Added

  • Add Bytes::from_owner to enable externally-allocated memory (#742)

Documented

  • Fix typo in Buf::chunk() comment (#744)

Internal changes

    <...

    Description has been truncated

…dates

Bumps the all-updates group with 55 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` |
| [serde](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.217` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.3` | `2.0.9` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.41.1` | `1.42.0` |
| [quick-xml](https://github.com/tafia/quick-xml) | `0.37.1` | `0.37.2` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.9` | `0.12.12` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.133` | `1.0.134` |
| [clap](https://github.com/clap-rs/clap) | `4.5.21` | `4.5.23` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.38` | `4.5.40` |
| [console](https://github.com/console-rs/console) | `0.15.8` | `0.15.10` |
| [glob](https://github.com/rust-lang/glob) | `0.3.1` | `0.3.2` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.18` | `0.3.19` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.93` | `1.0.95` |
| [predicates](https://github.com/assert-rs/predicates-rs) | `3.1.2` | `3.1.3` |
| [allocator-api2](https://github.com/zakarumych/allocator-api2) | `0.2.20` | `0.2.21` |
| [bstr](https://github.com/BurntSushi/bstr) | `1.11.0` | `1.11.1` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.8.0` | `1.9.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.1` | `1.2.6` |
| [compact_str](https://github.com/ParkMyCar/compact_str) | `0.8.0` | `0.8.1` |
| [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) | `0.5.13` | `0.5.14` |
| [crossbeam-deque](https://github.com/crossbeam-rs/crossbeam) | `0.8.5` | `0.8.6` |
| [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) | `0.8.20` | `0.8.21` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.9` | `0.3.10` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.2.0` | `2.3.0` |
| [foldhash](https://github.com/orlp/foldhash) | `0.1.3` | `0.1.4` |
| [http](https://github.com/hyperium/http) | `1.1.0` | `1.2.0` |
| [hyper](https://github.com/hyperium/hyper) | `1.5.1` | `1.5.2` |
| [hyper-rustls](https://github.com/rustls/hyper-rustls) | `0.27.3` | `0.27.5` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.6.0` | `2.7.0` |
| [instability](https://github.com/ratatui-org/instability) | `0.3.3` | `0.3.5` |
| [itoa](https://github.com/dtolnay/itoa) | `1.0.13` | `1.0.14` |
| [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.72` | `0.3.76` |
| [libc](https://github.com/rust-lang/libc) | `0.2.164` | `0.2.169` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.8.0` | `0.8.2` |
| [mio](https://github.com/tokio-rs/mio) | `1.0.2` | `1.0.3` |
| [object](https://github.com/gimli-rs/object) | `0.36.5` | `0.36.7` |
| [predicates-core](https://github.com/assert-rs/predicates-rs) | `1.0.8` | `1.0.9` |
| [predicates-tree](https://github.com/assert-rs/predicates-rs) | `1.0.11` | `1.0.12` |
| [quinn-udp](https://github.com/quinn-rs/quinn) | `0.5.7` | `0.5.9` |
| [quote](https://github.com/dtolnay/quote) | `1.0.37` | `1.0.38` |
| redox_syscall | `0.5.7` | `0.5.8` |
| [rustc-hash](https://github.com/rust-lang/rustc-hash) | `2.0.0` | `2.1.0` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.41` | `0.38.42` |
| [rustls](https://github.com/rustls/rustls) | `0.23.18` | `0.23.20` |
| [rustls-pki-types](https://github.com/rustls/pki-types) | `1.10.0` | `1.10.1` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.18` | `1.0.19` |
| [scc](https://github.com/wvwwvwwv/scalable-concurrent-containers) | `2.2.5` | `2.3.0` |
| [sdd](https://github.com/wvwwvwwv/scalable-delayed-dealloc) | `3.0.4` | `3.0.5` |
| [socket2](https://github.com/rust-lang/socket2) | `0.5.7` | `0.5.8` |
| [time](https://github.com/time-rs/time) | `0.3.36` | `0.3.37` |
| [tinyvec](https://github.com/Lokathor/tinyvec) | `1.8.0` | `1.8.1` |
| [tokio-rustls](https://github.com/rustls/tokio-rustls) | `0.26.0` | `0.26.1` |
| [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.16` | `0.1.17` |
| [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.45` | `0.4.49` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.6.20` | `0.6.21` |



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

Updates `serde` from 1.0.215 to 1.0.217
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.215...v1.0.217)

Updates `thiserror` from 2.0.3 to 2.0.9
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.3...2.0.9)

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

Updates `quick-xml` from 0.37.1 to 0.37.2
- [Release notes](https://github.com/tafia/quick-xml/releases)
- [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md)
- [Commits](tafia/quick-xml@v0.37.1...v0.37.2)

Updates `reqwest` from 0.12.9 to 0.12.12
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.9...v0.12.12)

Updates `serde_json` from 1.0.133 to 1.0.134
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.133...v1.0.134)

Updates `clap` from 4.5.21 to 4.5.23
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.21...clap_complete-v4.5.23)

Updates `clap_complete` from 4.5.38 to 4.5.40
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.38...clap_complete-v4.5.40)

Updates `console` from 0.15.8 to 0.15.10
- [Release notes](https://github.com/console-rs/console/releases)
- [Changelog](https://github.com/console-rs/console/blob/main/CHANGELOG.md)
- [Commits](console-rs/console@0.15.8...0.15.10)

Updates `glob` from 0.3.1 to 0.3.2
- [Release notes](https://github.com/rust-lang/glob/releases)
- [Changelog](https://github.com/rust-lang/glob/blob/master/CHANGELOG.md)
- [Commits](rust-lang/glob@0.3.1...v0.3.2)

Updates `tracing-subscriber` from 0.3.18 to 0.3.19
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.18...tracing-subscriber-0.3.19)

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

Updates `predicates` from 3.1.2 to 3.1.3
- [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md)
- [Commits](assert-rs/predicates-rs@v3.1.2...v3.1.3)

Updates `allocator-api2` from 0.2.20 to 0.2.21
- [Changelog](https://github.com/zakarumych/allocator-api2/blob/main/CHANGELOG.md)
- [Commits](https://github.com/zakarumych/allocator-api2/commits/v0.2.21)

Updates `bstr` from 1.11.0 to 1.11.1
- [Commits](BurntSushi/bstr@1.11.0...1.11.1)

Updates `bytes` from 1.8.0 to 1.9.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.8.0...v1.9.0)

Updates `cc` from 1.2.1 to 1.2.6
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.1...cc-v1.2.6)

Updates `clap_builder` from 4.5.21 to 4.5.23
- [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.5.21...v4.5.23)

Updates `clap_lex` from 0.7.3 to 0.7.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@clap_lex-v0.7.3...clap_lex-v0.7.4)

Updates `compact_str` from 0.8.0 to 0.8.1
- [Changelog](https://github.com/ParkMyCar/compact_str/blob/v0.8.1/CHANGELOG.md)
- [Commits](ParkMyCar/compact_str@v0.8.0...v0.8.1)

Updates `crossbeam-channel` from 0.5.13 to 0.5.14
- [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-channel-0.5.13...crossbeam-channel-0.5.14)

Updates `crossbeam-deque` from 0.8.5 to 0.8.6
- [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-deque-0.8.5...crossbeam-deque-0.8.6)

Updates `crossbeam-utils` from 0.8.20 to 0.8.21
- [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-utils-0.8.20...crossbeam-utils-0.8.21)

Updates `encode_unicode` from 0.3.6 to 1.0.0
- [Changelog](https://github.com/tormol/encode_unicode/blob/master/RELEASES.md)
- [Commits](tormol/encode_unicode@v0.3.6...v1.0.0)

Updates `errno` from 0.3.9 to 0.3.10
- [Release notes](https://github.com/lambda-fairy/rust-errno/releases)
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md)
- [Commits](lambda-fairy/rust-errno@v0.3.9...v0.3.10)

Updates `fastrand` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/smol-rs/fastrand/releases)
- [Changelog](https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md)
- [Commits](smol-rs/fastrand@v2.2.0...v2.3.0)

Updates `float-cmp` from 0.9.0 to 0.10.0
- [Commits](https://github.com/mikedilger/float-cmp/commits)

Updates `foldhash` from 0.1.3 to 0.1.4
- [Commits](orlp/foldhash@v0.1.3...v0.1.4)

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

Updates `hyper` from 1.5.1 to 1.5.2
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v1.5.1...v1.5.2)

Updates `hyper-rustls` from 0.27.3 to 0.27.5
- [Release notes](https://github.com/rustls/hyper-rustls/releases)
- [Commits](rustls/hyper-rustls@v/0.27.3...v/0.27.5)

Updates `indexmap` from 2.6.0 to 2.7.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.6.0...2.7.0)

Updates `instability` from 0.3.3 to 0.3.5
- [Release notes](https://github.com/ratatui-org/instability/releases)
- [Changelog](https://github.com/ratatui/instability/blob/main/CHANGELOG.md)
- [Commits](ratatui/instability@instability-v0.3.3...instability-v0.3.5)

Updates `itoa` from 1.0.13 to 1.0.14
- [Release notes](https://github.com/dtolnay/itoa/releases)
- [Commits](dtolnay/itoa@1.0.13...1.0.14)

Updates `js-sys` from 0.3.72 to 0.3.76
- [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 `libc` from 0.2.164 to 0.2.169
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.169/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.164...0.2.169)

Updates `miniz_oxide` from 0.8.0 to 0.8.2
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](Frommi/miniz_oxide@0.8.0...0.8.2)

Updates `mio` from 1.0.2 to 1.0.3
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v1.0.2...v1.0.3)

Updates `object` from 0.36.5 to 0.36.7
- [Changelog](https://github.com/gimli-rs/object/blob/master/CHANGELOG.md)
- [Commits](gimli-rs/object@0.36.5...0.36.7)

Updates `predicates-core` from 1.0.8 to 1.0.9
- [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md)
- [Commits](assert-rs/predicates-rs@predicates-core-v1.0.8...predicates-core-v1.0.9)

Updates `predicates-tree` from 1.0.11 to 1.0.12
- [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md)
- [Commits](assert-rs/predicates-rs@predicates-tree-v1.0.11...predicates-tree-v1.0.12)

Updates `quinn-udp` from 0.5.7 to 0.5.9
- [Release notes](https://github.com/quinn-rs/quinn/releases)
- [Commits](quinn-rs/quinn@quinn-udp-0.5.7...quinn-udp-0.5.9)

Updates `quote` from 1.0.37 to 1.0.38
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.37...1.0.38)

Updates `redox_syscall` from 0.5.7 to 0.5.8

Updates `rustc-hash` from 2.0.0 to 2.1.0
- [Changelog](https://github.com/rust-lang/rustc-hash/blob/master/CHANGELOG.md)
- [Commits](rust-lang/rustc-hash@v2.0.0...v2.1.0)

Updates `rustix` from 0.38.41 to 0.38.42
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGELOG.md)
- [Commits](bytecodealliance/rustix@v0.38.41...v0.38.42)

Updates `rustls` from 0.23.18 to 0.23.20
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.18...v/0.23.20)

Updates `rustls-pki-types` from 1.10.0 to 1.10.1
- [Release notes](https://github.com/rustls/pki-types/releases)
- [Commits](rustls/pki-types@v/1.10.0...v/1.10.1)

Updates `rustversion` from 1.0.18 to 1.0.19
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.18...1.0.19)

Updates `scc` from 2.2.5 to 2.3.0
- [Changelog](https://github.com/wvwwvwwv/scalable-concurrent-containers/blob/main/CHANGELOG.md)
- [Commits](https://github.com/wvwwvwwv/scalable-concurrent-containers/commits)

Updates `sdd` from 3.0.4 to 3.0.5
- [Changelog](https://github.com/wvwwvwwv/scalable-delayed-dealloc/blob/main/CHANGELOG.md)
- [Commits](https://github.com/wvwwvwwv/scalable-delayed-dealloc/commits)

Updates `serde_derive` from 1.0.215 to 1.0.217
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.215...v1.0.217)

Updates `socket2` from 0.5.7 to 0.5.8
- [Release notes](https://github.com/rust-lang/socket2/releases)
- [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/socket2/commits)

Updates `syn` from 2.0.89 to 2.0.93
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.89...2.0.93)

Updates `termtree` from 0.4.1 to 0.5.1
- [Changelog](https://github.com/rust-cli/termtree/blob/main/CHANGELOG.md)
- [Commits](rust-cli/termtree@v0.4.1...v0.5.1)

Updates `time` from 0.3.36 to 0.3.37
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.36...v0.3.37)

Updates `time-macros` from 0.2.18 to 0.2.19
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.2.18...v0.2.19)

Updates `tinyvec` from 1.8.0 to 1.8.1
- [Changelog](https://github.com/Lokathor/tinyvec/blob/main/CHANGELOG.md)
- [Commits](Lokathor/tinyvec@v1.8.0...v1.8.1)

Updates `tokio-rustls` from 0.26.0 to 0.26.1
- [Release notes](https://github.com/rustls/tokio-rustls/releases)
- [Commits](https://github.com/rustls/tokio-rustls/commits)

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

Updates `tracing-attributes` from 0.1.27 to 0.1.28
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-attributes-0.1.27...tracing-attributes-0.1.28)

Updates `tracing-core` from 0.1.32 to 0.1.33
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-core-0.1.32...tracing-core-0.1.33)

Updates `wasm-bindgen` from 0.2.95 to 0.2.99
- [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.95...0.2.99)

Updates `wasm-bindgen-backend` from 0.2.95 to 0.2.99
- [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.95...0.2.99)

Updates `wasm-bindgen-futures` from 0.4.45 to 0.4.49
- [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-macro` from 0.2.95 to 0.2.99
- [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.95...0.2.99)

Updates `wasm-bindgen-macro-support` from 0.2.95 to 0.2.99
- [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.95...0.2.99)

Updates `wasm-bindgen-shared` from 0.2.95 to 0.2.99
- [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.95...0.2.99)

Updates `web-sys` from 0.3.72 to 0.3.76
- [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 `winnow` from 0.6.20 to 0.6.21
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.6.20...v0.6.21)

---
updated-dependencies:
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: quick-xml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: clap_complete
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: console
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: glob
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: tracing-subscriber
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: predicates
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: allocator-api2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: bstr
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: bytes
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: clap_builder
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: clap_lex
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: compact_str
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: crossbeam-channel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: crossbeam-deque
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: crossbeam-utils
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: encode_unicode
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: errno
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: fastrand
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: float-cmp
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: foldhash
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: http
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: hyper
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: hyper-rustls
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: indexmap
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: instability
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: itoa
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: js-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: mio
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: object
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: predicates-core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: predicates-tree
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: quinn-udp
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: quote
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: redox_syscall
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: rustc-hash
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: rustls
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: rustls-pki-types
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: rustversion
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: scc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: sdd
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: socket2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: syn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: termtree
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: time
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: time-macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: tinyvec
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: tokio-rustls
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: tokio-stream
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: tracing-attributes
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: tracing-core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: wasm-bindgen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: wasm-bindgen-backend
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: wasm-bindgen-futures
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: wasm-bindgen-macro
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: wasm-bindgen-macro-support
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: wasm-bindgen-shared
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: web-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from Autoparallel January 1, 2025 08:12
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 1, 2025

The following labels could not be found: dependencies, automated pr.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants