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 prod group with 19 updates #332

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 26, 2023

Bumps the prod group with 19 updates:

Package From To
clap 4.4.8 4.4.11
serde 1.0.192 1.0.193
futures 0.3.29 0.3.30
tokio 1.34.0 1.35.1
thiserror 1.0.50 1.0.52
tracing-subscriber 0.3.17 0.3.18
tracing-appender 0.2.2 0.2.3
metrics 0.21.1 0.22.0
sentry 0.31.8 0.32.1
inferno 0.11.18 0.11.19
hyper 0.14.27 1.1.0
metrics-exporter-prometheus 0.12.1 0.13.0
once_cell 1.18.0 1.19.0
prost 0.12.1 0.12.3
primitive-types 0.11.1 0.12.2
secp256k1 0.26.0 0.28.0
itertools 0.11.0 0.12.0
reqwest 0.11.22 0.11.23
owo-colors 3.5.0 4.0.0

Updates clap from 4.4.8 to 4.4.11

Release notes

Sourced from clap's releases.

v4.4.11

[4.4.11] - 2023-12-04

Features

  • Add Command::mut_group

v4.4.10

[4.4.10] - 2023-11-28

Documentation

  • Link out to changelog
  • Cross link derive's attribute reference to derive tutorial

v4.4.9

[4.4.9] - 2023-11-27

Fixes

  • (help) Show correct Command::about under flattened headings
  • (help) Respect hide when flattening subcommands
Changelog

Sourced from clap's changelog.

[4.4.11] - 2023-12-04

Features

  • Add Command::mut_group

[4.4.10] - 2023-11-28

Documentation

  • Link out to changelog
  • Cross link derive's attribute reference to derive tutorial

[4.4.9] - 2023-11-27

Fixes

  • (help) Show correct Command::about under flattened headings
  • (help) Respect hide when flattening subcommands
Commits

Updates serde from 1.0.192 to 1.0.193

Release notes

Sourced from serde's releases.

v1.0.193

Commits
  • 44613c7 Release 1.0.193
  • c706281 Merge pull request #2655 from dtolnay/rangestartend
  • 65d75b8 Add RangeFrom and RangeTo tests
  • 332b0cb Merge pull request #2654 from dtolnay/rangestartend
  • 8c4af41 Fix more RangeFrom / RangeEnd mixups
  • 24a78f0 Merge pull request #2653 from emilbonnek/fix/range-to-from-de-mixup
  • c91c334 Fix Range{From,To} deserialize mixup
  • 2083f43 Update ui test suite to nightly-2023-11-19
  • See full diff in compare view

Updates futures from 0.3.29 to 0.3.30

Release notes

Sourced from futures's releases.

0.3.30

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Changelog

Sourced from futures's changelog.

0.3.30 - 2023-12-24

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Commits
  • de1a0fd Release 0.3.30
  • 68d2845 Remove a redundant space in example (#2816)
  • fdd2ce7 Fix broken link in CopyBufAbortable docs (#2815)
  • 272a3c7 Use cfg(target_has_atomic) on no-std targets
  • c179201 FillBuf: Do not call poll_fill_buf twice
  • e6735f3 FuturesUnordered: Fix clear implementation
  • 04d01a0 FuturesOrdered: Use 64-bit index
  • e4aa659 remove redundant impl Unpin
  • 17851c1 provide a mechanism to determine if io read/write halves are from the same st...
  • 4910799 provide a non-destructive mechanism to determine if a sink/stream are paired
  • Additional commits viewable in compare view

Updates tokio from 1.34.0 to 1.35.1

Release notes

Sourced from tokio's releases.

Tokio v1.35.1

1.35.1 (December 19, 2023)

This is a forward part of a change that was backported to 1.25.3.

Fixed

  • io: add budgeting to tokio::runtime::io::registration::async_io (#6221)

#6221: tokio-rs/tokio#6221

Tokio v1.35.0

1.35.0 (December 8th, 2023)

Added

  • net: add Apple watchOS support (#6176)

Changed

  • io: drop the Sized requirements from AsyncReadExt.read_buf (#6169)
  • runtime: make Runtime unwind safe (#6189)
  • runtime: reduce the lock contention in task spawn (#6001)
  • tokio: update nix dependency to 0.27.1 (#6190)

Fixed

  • chore: make --cfg docsrs work without net feature (#6166)
  • chore: use relaxed load for unsync_load on miri (#6179)
  • runtime: handle missing context on wake (#6148)
  • taskdump: fix taskdump cargo config example (#6150)
  • taskdump: skip notified tasks during taskdumps (#6194)
  • tracing: avoid creating resource spans with current parent, use a None parent instead (#6107)
  • tracing: make task span explicit root (#6158)

Documented

  • io: flush in AsyncWriteExt examples (#6149)
  • runtime: document fairness guarantees and current behavior (#6145)
  • task: document cancel safety of LocalSet::run_until (#6147)

#6001: tokio-rs/tokio#6001 #6107: tokio-rs/tokio#6107 #6144: tokio-rs/tokio#6144 #6145: tokio-rs/tokio#6145 #6147: tokio-rs/tokio#6147 #6148: tokio-rs/tokio#6148 #6149: tokio-rs/tokio#6149 #6150: tokio-rs/tokio#6150 #6158: tokio-rs/tokio#6158

... (truncated)

Commits

Updates thiserror from 1.0.50 to 1.0.52

Release notes

Sourced from thiserror's releases.

1.0.52

  • Fix interaction with RUSTC_BOOTSTRAP (#269)

1.0.51

  • Improve diagnostics when an invalid attribute previously caused thiserror to generate no Error impl (#266)
Commits
  • be83323 Release 1.0.52
  • c89ee6c Merge pull request #269 from dtolnay/bootstrap
  • af16652 Rerun build script on RUSTC_BOOTSTRAP change
  • d160dd2 Merge pull request #267 from dtolnay/useunderscore
  • 6b00235 Leave private traits' name out of scope
  • c3838bd Add a funding file
  • 87466d2 Update name of blocks_in_if_conditions clippy lint
  • 0555b80 Release 1.0.51
  • b94add8 Add ui test where fallback impl conflicts with handwritten Display
  • 02c6a55 Merge pull request #266 from dtolnay/fallback
  • Additional commits viewable in compare view

Updates tracing-subscriber from 0.3.17 to 0.3.18

Release notes

Sourced from tracing-subscriber's releases.

tracing-subscriber 0.3.18

This release of tracing-subscriber adds support for the NO_COLOR environment variable (an informal standard to disable emitting ANSI color escape codes) in fmt::Layer, reintroduces support for the chrono crate, and increases the minimum supported Rust version (MSRV) to Rust 1.63.0.

It also introduces several minor API improvements.

Added

  • chrono: Add chrono implementations of FormatTime (#2690)
  • subscriber: Add support for the NO_COLOR environment variable in fmt::Layer (#2647)
  • fmt: make format::Writer::new() public (#2680)
  • filter: Implement layer::Filter for Option<Filter> (#2407)

Changed

  • log: bump version of tracing-log to 0.2 (#2772)
  • Increased minimum supported Rust version (MSRV) to 1.63.0+.

#2690: tokio-rs/tracing#2690 #2647: tokio-rs/tracing#2647 #2680: tokio-rs/tracing#2680 #2407: tokio-rs/tracing#2407 #2772: tokio-rs/tracing#2772

Thanks to @​shayne-fletcher, @​dmlary, @​kaifastromai, and @​jsgf for contributing!

Commits

Updates tracing-appender from 0.2.2 to 0.2.3

Release notes

Sourced from tracing-appender's releases.

tracing-appender 0.2.3

This release contains several new features. It also increases the minimum supported Rust version (MSRV) to Rust 1.63.0.

Added

  • rolling: add option to automatically delete old log files (#2323)
  • non_blocking: allow worker thread name to be configured (#2365)
  • rolling: add a builder for constructing RollingFileAppenders (#2227)
  • rolling: add Builder::filename_suffix parameter (#2225)
  • non_blocking: remove Sync bound from writer for NonBlocking (#2607)
  • non_blocking: name spawned threads (#2219)

Fixed

  • Fixed several documentation typos and issues (#2689, #2375)

Changed

  • Increased minimum supported Rust version (MSRV) to 1.63.0+ (#2793)
  • Updated minimum tracing-subscriber version to 0.3.18 (#2790)

#2323: tokio-rs/tracing#2323 #2365: tokio-rs/tracing#2365 #2227: tokio-rs/tracing#2227 #2225: tokio-rs/tracing#2225 #2607: tokio-rs/tracing#2607 #2219: tokio-rs/tracing#2219 #2689: tokio-rs/tracing#2689 #2375: tokio-rs/tracing#2375 #2793: tokio-rs/tracing#2793 #2790: tokio-rs/tracing#2790

Commits

Updates metrics from 0.21.1 to 0.22.0

Commits
  • da3edb3 (cargo-release) version 0.22.0
  • 3b3a991 chore: clean up some clippy lints
  • c04acc4 chore(metrics-observer,metrics-exporter-tcp): update to prost 0.12
  • 4bc6c26 update RELEASES.md
  • 0e5874d enhancement(metrics): add support for scoped (local) recorders (#414)
  • 49d96b1 Update ordered-float requirement from 3.4 to 4.2 (#421)
  • 545878b Update quanta requirement from 0.11 to 0.12 (#396)
  • 851c930 update changelog
  • e9b8230 Try other resolved addresses if the first one fails (#429)
  • 52f5a50 Add a clippy CI check (#416) (#417)
  • Additional commits viewable in compare view

Updates sentry from 0.31.8 to 0.32.1

Release notes

Sourced from sentry's releases.

0.32.1

Features:

  • Add experimental implementations for Sentry metrics and a cadence sink. These require to use the UNSTABLE_metrics and UNSTABLE_cadence feature flags. Note that these APIs are still under development and subject to change.

0.32.0

Features:

  • Updated sentry-tower dependencies, including axum and http.
Changelog

Sourced from sentry's changelog.

0.32.1

Features:

  • Add experimental implementations for Sentry metrics and a cadence sink. These require to use the UNSTABLE_metrics and UNSTABLE_cadence feature flags. Note that these APIs are still under development and subject to change.

0.32.0

Features:

  • Updated sentry-tower dependencies, including axum and http.
Commits

Updates inferno from 0.11.18 to 0.11.19

Changelog

Sourced from inferno's changelog.

[0.11.19] - 2023-11-25

Changed

  • By default, make cargo install strip all binaries. #310
Commits

Updates hyper from 0.14.27 to 1.1.0

Release notes

Sourced from hyper's releases.

v1.1.0

Features

  • client: add http1::Connection without_shutdown() method (#3430) (210bfaa7)
  • http1: Add support for sending HTTP/1.1 Chunked Trailer Fields (#3375) (31b41807, closes #2719)
  • server: expose server::conn::http1::UpgradeableConnection (#3457) (6e3042a8)

Bug Fixes

New Contributors

Full Changelog: hyperium/hyper@v1.0.1...v1.1.0

v1.0.1

This release "fixes" or adds a few things that should have been in 1.0.0, but were forgotten. Thus, it includes additions that would normally be a semver-minor release, but because it is so close to 1.0.0, it is released as a patch version.

Bug Fixes

Features

  • rt: Make ReadBuf::new public (7161f562)

Breaking Changes

  • Pin is #[fundamental], so providing a Read/Write impl for it theoretically conflicts with existing user Read/Write for Pin impls. However, those impls probably don't exist yet. (dd6d81ca)

New Contributors

v1.0.0

Be sure to checkout the upgrading guide!

... (truncated)

Changelog

Sourced from hyper's changelog.

v1.1.0 (2023-12-18)

Bug Fixes

Features

  • client: add http1::Connection without_shutdown() method (#3430) (210bfaa7)
  • http1: Add support for sending HTTP/1.1 Chunked Trailer Fields (#3375) (31b41807, closes #2719)
  • server: expose server::conn::http1::UpgradeableConnection (#3457) (6e3042a8)

v1.0.1 (2023-11-16)

This release "fixes" or adds a few things that should have been in 1.0.0, but were forgotten. Thus, it includes additions that would normally be a semver-minor release, but because it is so close to 1.0.0, it is released as a patch version.

Bug Fixes

Features

  • rt: Make ReadBuf::new public (7161f562)

Breaking Changes

  • Pin is #[fundamental], so providing a Read/Write impl for it theoretically conflicts with existing user Read/Write for Pin impls. However, those impls probably don't exist yet. (dd6d81ca)

v1.0.0 (2023-11-15)

Be sure to check out the upgrading guide.

Bug Fixes

... (truncated)

Commits
  • 1d4ff35 v1.1.0
  • d71ff96 fix(http1): add internal limit for chunked extensions (#3495)
  • 8291538 fix(http1): reject chunked headers missing a digit (#3494)
  • 21aa2f1 refactor(common): move common feature cfg in common::task to common::mod (#3492)
  • d9c5d3b refactor(body): switch opt_len helper macro as function (#3483)
  • 53b560b refactor(proto): use HeaderMap type without client feature (#3491)
  • 31b4180 feat(http1): Add support for sending HTTP/1.1 Chunked Trailer Fields (#3375)
  • 0f2929b chore(ci): enable benchmark timeline in CI again (#3490)
  • 81b1592 chore(meta): change labels of severity to category (#3488)
  • 07554de refactor(error): remove lint config to allow unused code (#3486)
  • Additional commits viewable in compare view

Updates metrics-exporter-prometheus from 0.12.1 to 0.13.0

Commits
  • 6a793a3 (cargo-release) version 0.13.0
  • be3396c (cargo-release) version 0.15.0
  • 42d24d7 (cargo-release) version 0.16.0
  • da3edb3 (cargo-release) version 0.22.0
  • 3b3a991 chore: clean up some clippy lints
  • c04acc4 chore(metrics-observer,metrics-exporter-tcp): update to prost 0.12
  • 4bc6c26 update RELEASES.md
  • 0e5874d enhancement(metrics): add support for scoped (local) recorders (#414)
  • 49d96b1 Update ordered-float requirement from 3.4 to 4.2 (#421)
  • 545878b Update quanta requirement from 0.11 to 0.12 (#396)
  • Additional commits viewable in compare view

Updates once_cell from 1.18.0 to 1.19.0

Changelog

Sourced from once_cell's changelog.

1.19.0

  • Use portable-atomic instead of atomic-polyfill, #251.
Commits

Updates prost from 0.12.1 to 0.12.3

Commits

Updates primitive-types from 0.11.1 to 0.12.2

Commits

Updates secp256k1 from 0.26.0 to 0.28.0

Changelog

Sourced from secp256k1's changelog.

0.28.0 - 2023-10-23

  • Add bindings to the ElligatorSwift implementation #627
  • Depend on recent release of bitcoin_hashes v0.13.0 #621
  • Add a verify function to PublicKey #618
  • Add serialize function for schnorr::Signature #607
  • Bump MSRV to 1.48 #595
  • Remove implementations of PartialEq, Eq, PartialOrd, Ord, and Hash from the impl_array_newtype macro. Users will now need to derive these traits if they are wanted.

0.27.0 - 2023-03-15

Commits

Updates itertools from 0.11.0 to 0.12.0

Changelog

Sourced from itertools's changelog.

0.12.0

Breaking

  • Made take_while_inclusive consume iterator by value (#709)
  • Added Clone bound to Unique (#777)

Added

  • Added Itertools::try_len (#723)
  • Added free function sort_unstable (#796)
  • Added GroupMap::fold_with (#778, #785)
  • Added PeekNth::{peek_mut, peek_nth_mut} (#716)
  • Added PeekNth::{next_if, next_if_eq} (#734)
  • Added conversion into (Option<A>,Option<B>) to EitherOrBoth (#713)
  • Added conversion from Either<A, B> to EitherOrBoth<A, B> (#715)
  • Implemented ExactSizeIterator for Tuples (#761)
  • Implemented ExactSizeIterator for (Circular)TupleWindows (#752)
  • Made EitherOrBoth<T> a shorthand for EitherOrBoth<T, T> (#719)

Changed

  • Added missing #[must_use] anno...

    Description has been truncated

Bumps the prod group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.4.8` | `4.4.11` |
| [serde](https://github.com/serde-rs/serde) | `1.0.192` | `1.0.193` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.52` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` |
| [tracing-appender](https://github.com/tokio-rs/tracing) | `0.2.2` | `0.2.3` |
| [metrics](https://github.com/metrics-rs/metrics) | `0.21.1` | `0.22.0` |
| [sentry](https://github.com/getsentry/sentry-rust) | `0.31.8` | `0.32.1` |
| [inferno](https://github.com/jonhoo/inferno) | `0.11.18` | `0.11.19` |
| [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.1.0` |
| [metrics-exporter-prometheus](https://github.com/metrics-rs/metrics) | `0.12.1` | `0.13.0` |
| [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` |
| [prost](https://github.com/tokio-rs/prost) | `0.12.1` | `0.12.3` |
| [primitive-types](https://github.com/paritytech/parity-common) | `0.11.1` | `0.12.2` |
| [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1) | `0.26.0` | `0.28.0` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.11.0` | `0.12.0` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` |
| [owo-colors](https://github.com/jam1garner/owo-colors) | `3.5.0` | `4.0.0` |


Updates `clap` from 4.4.8 to 4.4.11
- [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.8...v4.4.11)

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

Updates `futures` from 0.3.29 to 0.3.30
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.29...0.3.30)

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

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

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

Updates `tracing-appender` from 0.2.2 to 0.2.3
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-appender-0.2.2...tracing-appender-0.2.3)

Updates `metrics` from 0.21.1 to 0.22.0
- [Changelog](https://github.com/metrics-rs/metrics/blob/main/release.toml)
- [Commits](metrics-rs/metrics@metrics-v0.21.1...metrics-v0.22.0)

Updates `sentry` from 0.31.8 to 0.32.1
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.31.8...0.32.1)

Updates `inferno` from 0.11.18 to 0.11.19
- [Changelog](https://github.com/jonhoo/inferno/blob/main/CHANGELOG.md)
- [Commits](jonhoo/inferno@v0.11.18...v0.11.19)

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

Updates `metrics-exporter-prometheus` from 0.12.1 to 0.13.0
- [Changelog](https://github.com/metrics-rs/metrics/blob/main/release.toml)
- [Commits](metrics-rs/metrics@metrics-exporter-prometheus-v0.12.1...metrics-exporter-prometheus-v0.13.0)

Updates `once_cell` from 1.18.0 to 1.19.0
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.18.0...v1.19.0)

Updates `prost` from 0.12.1 to 0.12.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.1...v0.12.3)

Updates `primitive-types` from 0.11.1 to 0.12.2
- [Commits](https://github.com/paritytech/parity-common/commits)

Updates `secp256k1` from 0.26.0 to 0.28.0
- [Changelog](https://github.com/rust-bitcoin/rust-secp256k1/blob/master/CHANGELOG.md)
- [Commits](rust-bitcoin/rust-secp256k1@secp256k1-0.26.0...secp256k1-0.28.0)

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

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

Updates `owo-colors` from 3.5.0 to 4.0.0
- [Commits](jam1garner/owo-colors@v3.5.0...v4.0.0)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: tracing-subscriber
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: tracing-appender
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: metrics
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: sentry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: inferno
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: hyper
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod
- dependency-name: metrics-exporter-prometheus
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: prost
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: primitive-types
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: secp256k1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: owo-colors
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the C-trivial label Dec 26, 2023
Copy link
Author

dependabot bot commented on behalf of github Dec 26, 2023

The following labels could not be found: A-rust, A-dependencies, P-Low :snowflake:.

Copy link
Author

dependabot bot commented on behalf of github Jan 2, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 2, 2024
@dependabot dependabot bot deleted the dependabot/cargo/prod-3fc2d2b387 branch January 2, 2024 03:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants