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

Bump the prod-dependencies group across 1 directory with 19 updates #109

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 5, 2024

Bumps the prod-dependencies group with 19 updates in the / directory:

Package From To
xxhash-rust 0.8.10 0.8.12
const-hex 1.11.3 1.12.0
libp2p-relay-manager 0.2.4 0.2.5
tokio 1.37.0 1.39.2
regex 1.10.4 1.10.6
async-trait 0.1.80 0.1.81
serde 1.0.202 1.0.204
serde_json 1.0.117 1.0.122
clap 4.5.4 4.5.13
sqlx 0.7.4 0.8.0
reqwest 0.12.4 0.12.5
url 2.5.0 2.5.2
tracing-opentelemetry 0.23.0 0.25.0
opentelemetry 0.22.0 0.24.0
opentelemetry_sdk 0.22.1 0.24.1
opentelemetry-stdout 0.3.0 0.5.0
opentelemetry-prometheus 0.15.0 0.17.0
built 0.7.2 0.7.4
itertools 0.12.1 0.13.0

Updates xxhash-rust from 0.8.10 to 0.8.12

Commits

Updates const-hex from 1.11.3 to 1.12.0

Commits
  • c81503c chore: Release const-hex version 1.12.0
  • 378861a feat: implement check for arm and portable-simd (#10)
  • a3944b6 chore: Release const-hex version 1.11.4
  • 7ceae26 Derive Eq trait for FromHexError (#9)
  • b055b1e test: check empty strings
  • See full diff in compare view

Updates libp2p-relay-manager from 0.2.4 to 0.2.5

Commits

Updates tokio from 1.37.0 to 1.39.2

Release notes

Sourced from tokio's releases.

Tokio v1.39.2

1.39.2 (July 27th, 2024)

This release fixes a regression where the select! macro stopped accepting expressions that make use of temporary lifetime extension. (#6722)

#6722: tokio-rs/tokio#6722

Tokio v1.39.1

1.39.1 (July 23rd, 2024)

This release reverts "time: avoid traversing entries in the time wheel twice" because it contains a bug. (#6715)

#6715: tokio-rs/tokio#6715

Tokio v1.39.0

1.39.0 (July 23rd, 2024)

  • This release bumps the MSRV to 1.70. (#6645)
  • This release upgrades to mio v1. (#6635)
  • This release upgrades to windows-sys v0.52 (#6154)

Added

  • io: implement AsyncSeek for Empty (#6663)
  • metrics: stabilize num_alive_tasks (#6619, #6667)
  • process: add Command::as_std_mut (#6608)
  • sync: add watch::Sender::same_channel (#6637)
  • sync: add {Receiver,UnboundedReceiver}::{sender_strong_count,sender_weak_count} (#6661)
  • sync: implement Default for watch::Sender (#6626)
  • task: implement Clone for AbortHandle (#6621)
  • task: stabilize consume_budget (#6622)

Changed

  • io: improve panic message of ReadBuf::put_slice() (#6629)
  • io: read during write in copy_bidirectional and copy (#6532)
  • runtime: replace num_cpus with available_parallelism (#6709)
  • task: avoid stack overflow when passing large future to block_on (#6692)
  • time: avoid traversing entries in the time wheel twice (#6584)
  • time: support IntoFuture with timeout (#6666)
  • macros: support IntoFuture with join! and select! (#6710)

Fixed

  • docs: fix docsrs builds with the fs feature enabled (#6585)
  • io: only use short-read optimization on known-to-be-compatible platforms (#6668)
  • time: fix overflow panic when using large durations with Interval (#6612)

Added (unstable)

... (truncated)

Commits

Updates regex from 1.10.4 to 1.10.6

Changelog

Sourced from regex's changelog.

1.10.6 (2024-08-02)

This is a new patch release with a fix for the unstable crate feature that enables std::str::Pattern trait integration.

Bug fixes:

1.10.5 (2024-06-09)

This is a new patch release with some minor fixes.

Bug fixes:

Commits

Updates async-trait from 0.1.80 to 0.1.81

Release notes

Sourced from async-trait's releases.

0.1.81

  • Turn off unneeded features of syn dependency (#272, thanks @​klensy)
Commits
  • 383f65f Release 0.1.81
  • 4ec740e Merge pull request #273 from dtolnay/cloneimpls
  • b6c6063 Ignore trivially_copy_pass_by_ref pedantic clippy lint
  • 315fd90 Turn off syn/clone-impls feature
  • 94a3165 Merge pull request #272 from klensy/syn-f
  • 2fac940 syn: remove derive feature
  • 4a00d73 Work around dead code warning in test
  • dba15b5 Merge pull request #270 from dtolnay/objsafety
  • d28c95b Former where_clauses_object_safety lint is now hard error
  • 78a5922 Fill in ignore reasons in all #[ignore] attributes
  • Additional commits viewable in compare view

Updates serde from 1.0.202 to 1.0.204

Release notes

Sourced from serde's releases.

v1.0.204

  • Apply #[diagnostic::on_unimplemented] attribute on Rust 1.78+ to suggest adding serde derive or enabling a "serde" feature flag in dependencies (#2767, thanks @​weiznich)

v1.0.203

  • Documentation improvements (#2747)
Commits
  • 18dcae0 Release 1.0.204
  • 58c307f Alphabetize list of rustc-check-cfg
  • 8cc4809 Merge pull request #2769 from dtolnay/onunimpl
  • 1179158 Update ui test with diagnostic::on_unimplemented from PR 2767
  • 91aa40e Add ui test of unsatisfied serde trait bound
  • 595019e Cut test_suite from workspace members in old toolchain CI jobs
  • b0d7917 Pull in trybuild 'following types implement trait' fix
  • 8e6637a Merge pull request #2767 from weiznich/feature/diagnostic_on_unimplemented
  • 694fe05 Use the #[diagnostic::on_unimplemented] attribute when possible
  • f3dfd2a Suppress dead code warning in test of unit struct remote derive
  • Additional commits viewable in compare view

Updates serde_json from 1.0.117 to 1.0.122

Release notes

Sourced from serde_json's releases.

v1.0.122

  • Support using json! in no-std crates (#1166)

v1.0.121

v1.0.120

  • Correctly specify required version of indexmap dependency (#1152, thanks @​cforycki)

v1.0.119

v1.0.118

Commits
  • 54381d6 Release 1.0.122
  • 16fb6e0 Work around buggy rust-analyzer behavior
  • 49d7d66 Merge pull request #1166 from dtolnay/allocvec
  • 6827c7b Fix json! invocations when std prelude is not in scope
  • 611b2a4 Merge pull request #1165 from serde-rs/jsonmac
  • 7633cb7 Eliminate local_inner_macros in favor of non-ident macro paths
  • eca2658 Release 1.0.121
  • b0d678c Merge pull request #1160 from iex-rs/efficient-position
  • b1edc7d Optimize position search in error path
  • 40dd7f5 Merge pull request #1159 from iex-rs/fix-recursion
  • Additional commits viewable in compare view

Updates clap from 4.5.4 to 4.5.13

Release notes

Sourced from clap's releases.

v4.5.13

[4.5.13] - 2024-07-31

Fixes

  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

v4.5.12

[4.5.12] - 2024-07-31

v4.5.10

[4.5.10] - 2024-07-23

v4.5.9

[4.5.9] - 2024-07-09

Fixes

  • (error) When defining a custom help flag, be sure to suggest it like we do the built-in one

v4.5.8

[4.5.8] - 2024-06-28

Fixes

  • Reduce extra flushes

v4.5.7

[4.5.7] - 2024-06-10

Fixes

  • Clean up error message when too few arguments for num_args

v4.5.6

[4.5.6] - 2024-06-06

Changelog

Sourced from clap's changelog.

[4.5.13] - 2024-07-31

Fixes

  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

[4.5.12] - 2024-07-31

[4.5.11] - 2024-07-25

[4.5.10] - 2024-07-23

[4.5.9] - 2024-07-09

Fixes

  • (error) When defining a custom help flag, be sure to suggest it like we do the built-in one

[4.5.8] - 2024-06-28

Fixes

  • Reduce extra flushes

[4.5.7] - 2024-06-10

Fixes

  • Clean up error message when too few arguments for num_args

[4.5.6] - 2024-06-06

[4.5.5] - 2024-06-06

Fixes

  • Allow exclusive to override required_unless_present, required_unless_present_any, required_unless_present_all
Commits

Updates sqlx from 0.7.4 to 0.8.0

Changelog

Sourced from sqlx's changelog.

0.8.0 - 2024-07-22

70 pull requests were merged this release cycle.

#2697 was merged the same day as release 0.7.4 and so was missed by the automatic CHANGELOG generation.

Breaking

  • [#2697]: fix(macros): only enable chrono when time is disabled [[@​saiintbrisson]]
  • [#2973]: Generic Associated Types in Database, replacing HasValueRef, HasArguments, HasStatement [[@​nitn3lav]]
  • [#2482]: chore: bump syn to 2.0 [[@​saiintbrisson]]
    • Deprecated type ascription syntax in the query macros was removed.
  • [#2736]: Fix describe on PostgreSQL views with rules [[@​tsing]]
    • Potentially breaking: nullability inference changes for Postgres.
  • [#2869]: Implement PgHasArrayType for all references [[@​tylerhawkes]]
    • Conflicts with existing manual implementations.
  • [#2940]: fix: Decode and Encode derives (#1031) [[@​benluelo]]
    • Changes lifetime obligations for field types.
  • [#3064]: Sqlite explain graph [[@​tyrelr]]
    • Potentially breaking: nullability inference changes for SQLite.
  • [#3123]: Reorder attrs in sqlx::test macro [[@​bobozaur]]
    • Potentially breaking: attributes on #[sqlx::test] usages are applied in the correct order now.
  • [#3126]: Make Encode return a result [[@​FSMaxB]]
  • [#3130]: Add version information for failed cli migration (#3129) [[@​FlakM]]
    • Breaking changes to MigrateError.
  • [#3181]: feat: no tx migration [[@​cleverjam]]
    • (Postgres only) migrations that should not run in a transaction can be flagged by adding -- no-transaction to the beginning.
    • Breaking change: added field to Migration
  • [#3184]: [BREAKING} fix(sqlite): always use i64 as intermediate when decoding [[@​abonander]]
    • integer decoding will now loudly error on overflow instead of silently truncating.
    • some usages of the query!() macros might change an i32 to an i64.
  • [#3252]: fix #[derive(sqlx::Type)] in Postgres [[@​abonander]]
    • Manual implementations of PgHasArrayType for enums will conflict with the generated one. Delete the manual impl or add #[sqlx(no_pg_array)] where conflicts occur.
    • Type equality for PgTypeInfo is now schema-aware.
  • [#3329]: fix: correct handling of arrays of custom types in Postgres [[@​abonander]]
    • Potential breaking change: PgTypeInfo::with_name() infers types that start with _ to be arrays of the un-prefixed type. Wrap type names in quotes to bypass this behavior.
  • [#3356]: breaking: fix name collision in FromRow, return Error::ColumnDecode for TryFrom errors [[@​abonander]]
    • Breaking behavior change: errors with #[sqlx(try_from = "T")] now return Error::ColumnDecode instead of Error::ColumnNotFound.
    • Breaking because #[sqlx(default)] on an individual field or the struct itself would have previously suppressed the error. This doesn't seem like good behavior as it could result in some potentially very difficult bugs.
      • Instead, create a wrapper implementing From and apply the default explicitly.
  • [#3337]: allow rename with rename_all (close #2896) [[@​DirectorX]]
    • Changes the precedence of #[sqlx(rename)] and #[sqlx(rename_all)] to match the expected behavior (rename wins).
  • [#3285]: fix: use correct names for sslmode options [[@​lily-mosquitoes]]
    • Changes the output of ConnectOptions::to_url_lossy() to match what parsing expects.

Added

... (truncated)

Commits
  • da0ffd7 chore: bump version to 0.8.0
  • 9e1aa74 chore: prepare changelog entry for 0.8.0
  • c90a7ff fix: enable clock and std features of chrono for the workspace
  • c50572e fix: sqlite update_hook char types (#3288)
  • 940d9fb Add example on how to use Transaction as Executor (#3311)
  • eaad7b2 doc: Minor rust docs fixes (#3312)
  • 4fc5b30 breaking: fix name collision in FromRow, return Error::ColumnDecode for `...
  • b37b34b chore:added a testcase for sqlx migrate add ... (#3352)
  • 543395d fix: build script new line at eof (#3353)
  • 4683cc3 Add support for PostgreSQL HSTORE data type (#3343)
  • Additional commits viewable in compare view

Updates reqwest from 0.12.4 to 0.12.5

Release notes

Sourced from reqwest's releases.

v0.12.5

What's Changed

  • Add http3 feature back, still requiring reqwest_unstable.
  • Add rustls-tls-no-provider Cargo feature to use rustls without a crypto provider.
  • Add blocking::ClientBuilder::dns_resolver() method to change DNS resolver in blocking client.
  • Fix Accept-Encoding header combinations.
  • Fix http3 resolving IPv6 addresses.
  • Internal: upgrade to rustls 0.23.

New Contributors

Full Changelog: seanmonstar/reqwest@v0.12.4...v0.12.5

Changelog

Sourced from reqwest's changelog.

v0.12.5

  • Add blocking::ClientBuilder::dns_resolver() method to change DNS resolver in blocking client.
  • Add http3 feature back, still requiring reqwest_unstable.
  • Add rustls-tls-no-provider Cargo feature to use rustls without a crypto provider.
  • Fix Accept-Encoding header combinations.
  • Fix http3 resolving IPv6 addresses.
  • Internal: upgrade to rustls 0.23.
Commits
  • 29d4cff v0.12.5
  • a7880d6 tests: fix http3 tests
  • c32d877 tests: enable http3 content-length test
  • ce3b30e http3: send content-length if known
  • 404df59 test: add http3 test server support
  • e5ce0b5 fix: don't enable hyper-rustls/http2 unless http2 is already enabled
  • ccb5e40 Don't compile hyper-tls with native-roots unless rustls-tls-native-roots is e...
  • c56fbae tests: remove a proxy parse error check
  • 8cc7cd4 msrv: pin url
  • 695bc04 fix: http3 resolving ipv6 addresses (#2305)
  • Additional commits viewable in compare view

Updates url from 2.5.0 to 2.5.2

Commits

Updates tracing-opentelemetry from 0.23.0 to 0.25.0

Release notes

Sourced from tracing-opentelemetry's releases.

0.25.0

What's Changed

0.24.0

Breaking Changes

  • Upgrade to opentelemetry 0.23. Refer to the upstream changelog for more information.

Added

  • Added gauge metrics (#129)

Fixed

  • Fixed compilation on WASI targets (#147)
  • Set span end time when it exists (#124)
Changelog

Sourced from tracing-opentelemetry's changelog.

0.25.0 (July 21, 2024)

Breaking Changes

  • Upgrade to opentelemetry 0.24. Refer to the upstream changelog for more information.

Fixed

  • Invalidate sample decision on set parent (#153)
  • chore: fix on_close() comment (#148)

0.24.0 (May 24, 2024)

Breaking Changes

  • Upgrade to opentelemetry 0.23. Refer to the upstream changelog for more information.

Added

  • Added gauge metrics (#129)

Fixed

  • Fixed compilation on WASI targets (#147)
  • Set span end time when it exists (#124)
Commits
  • 83adbff Upgrade to tracing-opentelemetry 0.24
  • 70f6948 Remove deprecated APIs
  • 901fde6 We now need a recent version of lazy_static
  • b78756b ci: remove stray working-directory setting
  • 7f4409a Invalidate sample decision on set parent fix #150 (#153)
  • 9462de6 chore: fix on_close() comment
  • de42149 Remove code owners configuration
  • 0bd674b Update changelog for 0.24.0 release
  • 3ac1274 Remove authors from Cargo metadata (per RFC 3052)
  • 360cdc0 Bump version to 0.24.0
  • Additional commits viewable in compare view

Updates opentelemetry from 0.22.0 to 0.24.0

Release notes

Sourced from opentelemetry's releases.

opentelemetry-0.24.0

See individual crate changelogs for details.

0.23.0

Whats changed?

See individual crate changelogs for details.

New Contributors

@​svix-jplatte made their first contribution in open-telemetry/opentelemetry-rust#1568 @​rex4539 made their first contribution in open-telemetry/opentelemetry-rust#1587 @​divergentdave made their first contribution in open-telemetry/opentelemetry-rust#1584 @​pyohannes made their first contribution in open-telemetry/opentelemetry-rust#1578 @​masato-hi made their first contribution in open-telemetry/opentelemetry-rust#1621 @​rogercoll made their first contribution in open-telemetry/opentelemetry-rust#1624 @​LuisOsta made their first contribution in open-telemetry/opentelemetry-rust#1638 @​svrnm made their first contribution in open-telemetry/opentelemetry-rust#1664 @​Lev1ty made their first contribution in open-telemetry/opentelemetry-rust#1672 @​ThomsonTan made their first contribution in open-telemetry/opentelemetry-rust#1675 @​ramgdev made their first contribution in open-telemetry/opentelemetry-rust#1585 @​utpilla made their first contribution in open-telemetry/opentelemetry-rust#1701 @​ChieloNewctle made their first contribution in open-telemetry/opentelemetry-rust#1746

Commits

Updates opentelemetry_sdk from 0.22.1 to 0.24.1

Release notes

Sourced from opentelemetry_sdk's releases.

opentelemetry-sdk v0.24.1 patch release

Refer to opentelemetry-sdk CHANGELOG for the changes.

opentelemetry-0.24.0

See individual crate changelogs for details.

0.23.0

Whats changed?

See individual crate changelogs for details.

New Contributors

@​svix-jplatte made their first contribution in open-telemetry/opentelemetry-rust#1568 @​rex4539 made their first contribution in open-telemetry/opentelemetry-rust#1587 @​divergentdave made their first contribution in open-telemetry/opentelemetry-rust#1584 @​pyohannes made their first contribution in open-telemetry/opentelemetry-rust#1578 @​masato-hi made their first contribution in open-telemetry/opentelemetry-rust#1621 @​rogercoll made their first contribution in open-telemetry/opentelemetry-rust#1624 @​LuisOsta made their first contribution in open-telemetry/opentelemetry-rust#1638 @​svrnm made their first contribution in open-telemetry/opentelemetry-rust#1664 @​Lev1ty made their first contribution in open-telemetry/opentelemetry-rust#1672 @​ThomsonTan made their first contribution in open-telemetry/opentelemetry-rust#1675 @​ramgdev made their first contribution in open-telemetry/opentelemetry-rust#1585 @​utpilla made their first contribution in open-telemetry/opentelemetry-rust#1701 @​ChieloNewctle made their first contribution in open-telemetry/opentelemetry-rust#1746

Commits

Updates opentelemetry-stdout from 0.3.0 to 0.5.0

Release notes

Sourced from opentelemetry-stdout's releases.

v0.5.0

Added

  • Derive Clone for B3Propagator, SamplingResult, and SpanBuilder
  • Ability to configure the span id / trace id generator
  • impl From<T> for common Key and Value types
  • Add global tracer method
  • Add Resource API
  • Add Context API
  • Add Correlations API
  • Add HttpTextCompositePropagator for composing HttpTextPropagators
  • Add GlobalPropagator for globally configuring a propagator
  • Add TraceContextExt to provide methods for working with trace data in a context
  • Expose EvictedQueue constructor

Changed

  • Ensure that impls of Span are Send and Sync when used in global
  • Changed Key and Value method signatures to remove Cow references
  • Tracer's start now uses the implicit current context instead of an explicit span context. start_with_context may be used to specify a context if desired.
  • with_span now accepts a span for naming consistency and managing the active state of a more complex span (likely produced by a builder), and the previous functionality that accepts a &str has been renamed to in_span, both of which now yield a context to the provided closure.
  • Tracer's get_active_span now accepts a closure
  • The Instrument trait has been renamed to FutureExt to avoid clashing with metric instruments, and instead accepts contexts via with_context.
  • Span's get_context method has been renamed to span_context to avoid ambiguity.
  • HttpTextPropagators inject the current context instead of an explicit span context. The context can be specified with inject_context.
  • SpanData's context has been renamed to span_context

Fixed

  • Update the probability sampler to match the spec
  • Rename Traceparent header to traceparent

Removed

  • TracerGenerics methods have been folded in to the Tracer trait so it is longer needed
  • Tracer's mark_span_as_inactive...

    Description has been truncated

Bumps the prod-dependencies group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [xxhash-rust](https://github.com/DoumanAsh/xxhash-rust) | `0.8.10` | `0.8.12` |
| [const-hex](https://github.com/danipopes/const-hex) | `1.11.3` | `1.12.0` |
| [libp2p-relay-manager](https://github.com/dariusc93/rust-ipfs) | `0.2.4` | `0.2.5` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.37.0` | `1.39.2` |
| [regex](https://github.com/rust-lang/regex) | `1.10.4` | `1.10.6` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.80` | `0.1.81` |
| [serde](https://github.com/serde-rs/serde) | `1.0.202` | `1.0.204` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.117` | `1.0.122` |
| [clap](https://github.com/clap-rs/clap) | `4.5.4` | `4.5.13` |
| [sqlx](https://github.com/launchbadge/sqlx) | `0.7.4` | `0.8.0` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.4` | `0.12.5` |
| [url](https://github.com/servo/rust-url) | `2.5.0` | `2.5.2` |
| [tracing-opentelemetry](https://github.com/tokio-rs/tracing-opentelemetry) | `0.23.0` | `0.25.0` |
| [opentelemetry](https://github.com/open-telemetry/opentelemetry-rust) | `0.22.0` | `0.24.0` |
| [opentelemetry_sdk](https://github.com/open-telemetry/opentelemetry-rust) | `0.22.1` | `0.24.1` |
| [opentelemetry-stdout](https://github.com/open-telemetry/opentelemetry-rust) | `0.3.0` | `0.5.0` |
| [opentelemetry-prometheus](https://github.com/open-telemetry/opentelemetry-rust) | `0.15.0` | `0.17.0` |
| [built](https://github.com/lukaslueg/built) | `0.7.2` | `0.7.4` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.12.1` | `0.13.0` |



Updates `xxhash-rust` from 0.8.10 to 0.8.12
- [Commits](https://github.com/DoumanAsh/xxhash-rust/commits)

Updates `const-hex` from 1.11.3 to 1.12.0
- [Commits](DaniPopes/const-hex@v1.11.3...v1.12.0)

Updates `libp2p-relay-manager` from 0.2.4 to 0.2.5
- [Changelog](https://github.com/dariusc93/rust-ipfs/blob/libp2p-next/CHANGELOG.md)
- [Commits](https://github.com/dariusc93/rust-ipfs/commits)

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

Updates `regex` from 1.10.4 to 1.10.6
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.10.4...1.10.6)

Updates `async-trait` from 0.1.80 to 0.1.81
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.80...0.1.81)

Updates `serde` from 1.0.202 to 1.0.204
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.202...v1.0.204)

Updates `serde_json` from 1.0.117 to 1.0.122
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.117...v1.0.122)

Updates `clap` from 4.5.4 to 4.5.13
- [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.4...v4.5.13)

Updates `sqlx` from 0.7.4 to 0.8.0
- [Changelog](https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md)
- [Commits](launchbadge/sqlx@v0.7.4...v0.8.0)

Updates `reqwest` from 0.12.4 to 0.12.5
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.4...v0.12.5)

Updates `url` from 2.5.0 to 2.5.2
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.0...v2.5.2)

Updates `tracing-opentelemetry` from 0.23.0 to 0.25.0
- [Release notes](https://github.com/tokio-rs/tracing-opentelemetry/releases)
- [Changelog](https://github.com/tokio-rs/tracing-opentelemetry/blob/v0.1.x/CHANGELOG.md)
- [Commits](tokio-rs/tracing-opentelemetry@v0.23.0...v0.25.0)

Updates `opentelemetry` from 0.22.0 to 0.24.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry-0.22.0...opentelemetry-0.24.0)

Updates `opentelemetry_sdk` from 0.22.1 to 0.24.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Commits](open-telemetry/opentelemetry-rust@v0.22.1...opentelemetry_sdk-0.24.1)

Updates `opentelemetry-stdout` from 0.3.0 to 0.5.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry-stdout-0.3.0...opentelemetry-stdout-0.5.0)

Updates `opentelemetry-prometheus` from 0.15.0 to 0.17.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry-prometheus-0.15.0...opentelemetry-prometheus-0.17.0)

Updates `built` from 0.7.2 to 0.7.4
- [Changelog](https://github.com/lukaslueg/built/blob/master/CHANGELOG.md)
- [Commits](lukaslueg/built@0.7.2...0.7.4)

Updates `itertools` from 0.12.1 to 0.13.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.1...v0.13.0)

---
updated-dependencies:
- dependency-name: xxhash-rust
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: const-hex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: libp2p-relay-manager
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: sqlx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: url
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: tracing-opentelemetry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: opentelemetry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: opentelemetry_sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: opentelemetry-stdout
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: opentelemetry-prometheus
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: built
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 5, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 12, 2024

Superseded by #110.

@dependabot dependabot bot closed this Aug 12, 2024
@dependabot dependabot bot deleted the dependabot/cargo/prod-dependencies-63695f62dd branch August 12, 2024 15:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants