Skip to content

chore(deps)(deps): bump the production-dependencies group across 1 directory with 62 updates#66

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/production-dependencies-34a699be1b
Open

chore(deps)(deps): bump the production-dependencies group across 1 directory with 62 updates#66
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/production-dependencies-34a699be1b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 28, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 61 updates in the / directory:

Package From To
http 1.4.1 1.4.2
bytes 1.11.1 1.12.0
opentelemetry 0.31.0 0.32.0
opentelemetry_sdk 0.31.0 0.32.1
quote 1.0.45 1.0.46
syn 2.0.117 2.0.118
anyhow 1.0.102 1.0.103
error-stack 0.6.0 0.7.1
config 0.15.23 0.15.25
toml 0.8.23 1.1.2+spec-1.1.0
regex 1.12.3 1.12.4
quick_cache 0.6.22 0.7.0
tower-http 0.6.11 0.7.0
diesel 2.3.9 2.3.10
redis 0.27.6 1.3.0
deadpool 0.12.3 0.13.0
deadpool-redis 0.16.0 0.23.0
jsonwebtoken 10.3.0 10.4.0
bcrypt 0.18.0 0.19.2
rand 0.9.4 0.10.1
hmac 0.12.1 0.13.0
getrandom 0.3.4 0.4.2
sha3 0.10.9 0.11.0
sha2 0.10.9 0.11.0
askama 0.15.6 0.16.0
tera 1.20.1 2.0.0
handlebars 6.4.1 6.4.2
tokio-tungstenite 0.28.0 0.29.0
tungstenite 0.28.0 0.29.0
lapin 2.5.5 4.10.0
rdkafka 0.36.2 0.39.0
brotli 7.0.0 8.0.3
h2 0.4.14 0.4.15
rustls 0.23.40 0.23.41
quinn 0.11.9 0.11.11
utoipa-swagger-ui 8.1.0 9.0.2
ldap3 0.11.5 0.12.1
alloy 2.0.5 2.1.0
alloy-transport 1.8.3 2.1.0
alloy-network 1.8.3 2.1.0
alloy-rpc-types 1.8.3 2.1.0
dialoguer 0.11.0 0.12.0
indicatif 0.17.11 0.18.4
console 0.15.11 0.16.3
rustyline 15.0.0 17.0.2
colored 2.2.0 3.1.1
zip 2.4.2 3.0.0
trybuild 1.0.116 1.0.117
itertools 0.14.0 0.15.0
chrono 0.4.44 0.4.45
time 0.3.47 0.3.51
uuid 1.23.2 1.23.4
tracing-opentelemetry 0.32.1 0.33.0
opentelemetry-otlp 0.31.1 0.32.0
log 0.4.31 0.4.33
env_logger 0.11.10 0.11.11
bevy_reflect 0.13.2 0.19.0
flume 0.11.1 0.12.0
io-uring 0.7.11 0.7.12
prost 0.13.5 0.14.3
prost-types 0.13.5 0.14.3

Updates http from 1.4.1 to 1.4.2

Changelog

Sourced from http's changelog.

1.4.2 (June 8, 2026)

  • Fix uri::Builder to allow "*" as the path when scheme and authority are also set, used in HTTP/2 requests.
  • Fix Uri to properly reject DEL characters.
Commits

Updates bytes from 1.11.1 to 1.12.0

Release notes

Sourced from bytes's releases.

Bytes v1.12.0

1.12.0 (June 18th, 2026)

Added

  • Add BytesMut::extend_from_within() (#818)
  • Add BytesMut::try_unsplit() (#746)

Fixed

  • Fix panic in get_int if nbytes is zero (#806)

Changed

  • Pass vtable data by value (#826)
  • Exclude development scripts from published package (#810)

Documented

  • Document that BytesMut::{reserve,try_reserve} doesn't preserve unused capacity (#808)
Changelog

Sourced from bytes's changelog.

1.12.0 (June 18th, 2026)

Added

  • Add BytesMut::extend_from_within() (#818)
  • Add BytesMut::try_unsplit() (#746)

Fixed

  • Fix panic in get_int if nbytes is zero (#806)

Changed

  • Pass vtable data by value (#826)
  • Exclude development scripts from published package (#810)

Documented

  • Document that BytesMut::{reserve,try_reserve} doesn't preserve unused capacity (#808)
Commits

Updates opentelemetry from 0.31.0 to 0.32.0

Release notes

Sourced from opentelemetry's releases.

0.32.0

See release notes: https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.32.md

opentelemetry-otlp 0.31.1

What's Changed

Full Changelog: open-telemetry/opentelemetry-rust@v0.31.0...opentelemetry-otlp-0.31.1

Changelog

Sourced from opentelemetry's changelog.

Release Notes 0.32

OpenTelemetry Rust 0.32 continues to drive the Logs, Metrics, and Distributed Tracing components forward. The Logs and Metrics API and SDK remain stable, with no breaking changes in this release. The OTLP Exporters and the Distributed Tracing API/SDK remain in pre-stable states (Release-Candidate and Beta respectively), and this release introduces a small number of intentional breaking changes in those areas to prepare them for stabilization.

For detailed changelogs of individual crates, please refer to their respective changelog files. This document serves as a summary of the main changes.

Key Changes

Metrics SDK

  1. Bound instruments (experimental): Added Counter::bind() and Histogram::bind() returning pre-bound measurement handles (BoundCounter<T>, BoundHistogram<T>). Bound instruments resolve the attribute-to-aggregator mapping once at bind time and cache the result, eliminating per-call HashMap lookups on the hot path. Benchmarks show ~28x speedup for counter operations and ~9x for histograms. Gated behind the experimental_metrics_bound_instruments feature flag.

  2. Delta collection efficiency: Delta metrics collection now uses in-place eviction instead of draining the HashMap on every collect cycle. Stale attribute sets that received no measurements since the last collection are evicted.

  3. Stable Aggregation API: Aggregation and StreamBuilder::with_aggregation() are now stable and no longer require the spec_unstable_metrics_views feature flag.

Logs

  1. Tracing-span attribute enrichment (experimental): The opentelemetry-appender-tracing crate can now copy attributes from active tracing spans onto each emitted log record. ("Span" here refers to tracing::span!, not an opentelemetry::trace::Span.) Enrichment is disabled by default with zero per-span overhead, and is gated behind the new experimental_span_attributes cargo feature.

  2. spec_unstable_logs_enabled removed: The capability (and the backing specification) is now stable and is enabled by default. The feature flag has been removed.

Distributed Tracing (Beta)

The Distributed Tracing API and SDK remain in beta. This release contains intentional breaking changes to clean up the public surface ahead of

... (truncated)

Commits
  • ec289cb chore: Prepare for release v0.32.0 (#3508)
  • 3ddb386 fix(metrics): reject usize::MAX as cardinality limit (#3506)
  • bad0a1b feat(appender-tracing): re-gate span attribute enrichment behind experimental...
  • f744509 docs: update README status table and remove deprecated crates (#3502)
  • 81d5a06 chore(prometheus): restore crate to workspace (#3500)
  • 5a07ce1 ci: close stale pull requests (#3499)
  • cc87dd9 feat(appender-tracing): stabilize span attribute propagation (#3482)
  • f290595 docs(metrics): document experimental bound instruments (#3495)
  • a79eb76 fix(sdk): suppress telemetry in SimpleSpanProcessor during export (#3494)
  • aa3bda3 chore(zipkin): deprecate opentelemetry-zipkin crate (#3492)
  • Additional commits viewable in compare view

Updates opentelemetry_sdk from 0.31.0 to 0.32.1

Changelog

Sourced from opentelemetry_sdk's changelog.

Release Notes 0.32

OpenTelemetry Rust 0.32 continues to drive the Logs, Metrics, and Distributed Tracing components forward. The Logs and Metrics API and SDK remain stable, with no breaking changes in this release. The OTLP Exporters and the Distributed Tracing API/SDK remain in pre-stable states (Release-Candidate and Beta respectively), and this release introduces a small number of intentional breaking changes in those areas to prepare them for stabilization.

For detailed changelogs of individual crates, please refer to their respective changelog files. This document serves as a summary of the main changes.

Key Changes

Metrics SDK

  1. Bound instruments (experimental): Added Counter::bind() and Histogram::bind() returning pre-bound measurement handles (BoundCounter<T>, BoundHistogram<T>). Bound instruments resolve the attribute-to-aggregator mapping once at bind time and cache the result, eliminating per-call HashMap lookups on the hot path. Benchmarks show ~28x speedup for counter operations and ~9x for histograms. Gated behind the experimental_metrics_bound_instruments feature flag.

  2. Delta collection efficiency: Delta metrics collection now uses in-place eviction instead of draining the HashMap on every collect cycle. Stale attribute sets that received no measurements since the last collection are evicted.

  3. Stable Aggregation API: Aggregation and StreamBuilder::with_aggregation() are now stable and no longer require the spec_unstable_metrics_views feature flag.

Logs

  1. Tracing-span attribute enrichment (experimental): The opentelemetry-appender-tracing crate can now copy attributes from active tracing spans onto each emitted log record. ("Span" here refers to tracing::span!, not an opentelemetry::trace::Span.) Enrichment is disabled by default with zero per-span overhead, and is gated behind the new experimental_span_attributes cargo feature.

  2. spec_unstable_logs_enabled removed: The capability (and the backing specification) is now stable and is enabled by default. The feature flag has been removed.

Distributed Tracing (Beta)

The Distributed Tracing API and SDK remain in beta. This release contains intentional breaking changes to clean up the public surface ahead of

... (truncated)

Commits
  • 74cb6f3 chore: Release opentelemetry-semantic-conventions 0.32.1 (#3562)
  • 10dde18 chore(sdk): add missing changelog entry (#3550)
  • ec2da12 refactor: leverage static str key when possible (#3529)
  • 90a39a0 feat(api): accept quoted-key fields in otel logging macros (#3567)
  • 8c922bc feat(appender-tracing): add builder support for custom instrumentation scope ...
  • fb2af9d feat(metrics): add BoundUpDownCounter under experimental_metrics_bound_instru...
  • 1b3846c feat(metrics): add BoundGauge under experimental_metrics_bound_instruments (#...
  • ee359db fix: remove reqwest-rustls-webpki-roots (#3524)
  • 4d4fd4d chore: Bump semantic-conventions to v1.42.0 (#3561)
  • 69213f2 fix(prometheus-exporter): Concatenate metric attributes with Scope during col...
  • Additional commits viewable in compare view

Updates quote from 1.0.45 to 1.0.46

Release notes

Sourced from quote's releases.

1.0.46

Commits
  • bc4caf2 Release 1.0.46
  • dc0e304 Format with rustfmt
  • 712114c Drop arrow from syntax of quote_spanned_with_expanded_span
  • f93ab8a Eliminate quote_spanned_with_expanded_span_as_expr macro
  • 1ff3951 Eliminate __quote_spanned macro
  • 64e913a Unify quote_spanned definitions
  • 2978e8b Wrap comment to 80 columns
  • 7f311a0 Fix PR 329 fat arrow spacing
  • 313a8a2 Remove unneeded get_span from PR 329
  • 0b33821 Merge pull request #329 from Noratrieb/avoid-repeat-expand
  • Additional commits viewable in compare view

Updates syn from 2.0.117 to 2.0.118

Release notes

Sourced from syn's releases.

2.0.118

  • Documentation improvements
Commits
  • f033ef1 Release 2.0.118
  • 45f65f7 Wrap long lint attributes
  • b3f9bf8 Mirror PR 1975 from readme to crate-level rustdoc
  • 97dc117 Wrap PR 1975 to 80 columns
  • 0085b7a Lint repr_transparent_non_zst_fields has been removed
  • 9fc1c9d Update test suite to nightly-2026-06-12
  • 504bcc7 Update test suite to nightly-2026-06-09
  • 353d20b Update test suite to nightly-2026-06-06
  • f257a16 Update test suite to nightly-2026-05-25
  • b706e6e Update test suite to nightly-2026-05-13
  • Additional commits viewable in compare view

Updates anyhow from 1.0.102 to 1.0.103

Release notes

Sourced from anyhow's releases.

1.0.103

  • Fix Stacked Borrows violation (UB) in Error::downcast_mut (#451, #452)
Commits
  • 5bdb0e2 Release 1.0.103
  • e621bd3 Merge pull request #452 from dtolnay/downcast
  • 6e8c000 Eliminate pointer->reference->pointer during downcast
  • 67c4abd Add regression test for issue 451
  • 917a169 Update actions/upload-artifact@v6 -> v7
  • d9dc3fa Update actions/checkout@v6 -> v7
  • 841522b Raise minimum tested compiler to rust 1.85
  • See full diff in compare view

Updates error-stack from 0.6.0 to 0.7.1

Release notes

Sourced from error-stack's releases.

error-stack@0.7.1

crates.io libs.rs rust-version documentation license

What changed

Fixes

  • Gate sink imports behind cfg(nightly) so error-stack compiles on stable Rust with the unstable feature enabled. (#8768)

Full Changelog: https://github.com/hashintel/hash/compare/error-stack@0.7.0...error-stack@0.7.1

error-stack@0.7.0

crates.io libs.rs rust-version documentation license

What changed

Features

  • Support trailing commans in bail! macro. (#7772)

Breaking Changes

  • Remove deprecated Context (#7763)
  • Remove deprecated report! (#7763)
  • Remove deprecated Report::{attach_lazy, attach_printable, attach_printable_lazy} (#7763)
  • Depend on serde_core instead of serde. (#7909)

Full Changelog: https://github.com/hashintel/hash/compare/error-stack@0.6.0...error-stack@0.7.0

Commits
  • a8da2f8 BE-578: Gate sink imports behind cfg(nightly) (#8768)
  • 97bd10e BE-482: HashQL: Remove logical not from MIR and fix postgres boolean lowering...
  • f9d6417 H-6487: Add AI assistant to Petrinaut + demo website (#8750)
  • 2de5a8d FE-750: Fix color variants in panda (#8754)
  • 9350e3f BE-474: HashQL: Take into account terminator target eligibility in execution ...
  • ae5c317 BE-455: HashQL: Introduce evaluation orchestrator (#8586)
  • e2c4acf H-6479: Ignore Cursor plan documents in markdownlint (#8733)
  • 97d9048 Version Packages (#8723)
  • 0eb9937 H-6429: TypeScript dependency updates (#8736)
  • c74df03 H-6472: Replace Biome with Oxfmt for formatting (#8716)
  • Additional commits viewable in compare view

Updates config from 0.15.23 to 0.15.25

Changelog

Sourced from config's changelog.

[0.15.25] - 2026-06-26

Fixes

  • (ron) Support u64, and not just i64

[0.15.24] - 2026-06-16

Fixes

  • (json) Support u64, and not just i64
Commits
  • 8fc857f chore: Release config version 0.15.25
  • cbf8542 docs: Update changelog
  • ac0ee7b fix(ron): map u64 values to ValueKind::U64 instead of lossy I64 cast (#761)
  • 55d4418 fix(ron): map u64 values to ValueKind::U64 instead of lossy I64 cast
  • 6314dde chore: Release config version 0.15.24
  • edd5da5 docs: Update changelog
  • 13c188b fix: support u64 for parse json file (#758)
  • be51260 chore(deps): Update pre-commit hook crate-ci/typos to v1.47.0 (#760)
  • 1de84e0 chore(deps): Update compatible (dev) (#759)
  • 8c27a5b chore(deps): Update pre-commit hook crate-ci/typos to v1.47.0
  • Additional commits viewable in compare view

Updates toml from 0.8.23 to 1.1.2+spec-1.1.0

Commits

Updates regex from 1.12.3 to 1.12.4

Changelog

Sourced from regex's changelog.

1.12.4 (2025-06-09)

This release includes a performance optimization for compilation of regexes with very large character classes.

Improvements:

  • #1308: Avoid re-canonicalizing the entire interval set when pushing new class ranges.
Commits
  • 7b96fdc 1.12.4
  • 7b89cf0 deps: update to regex-syntax 0.8.11
  • 1401679 regex-syntax-0.8.11
  • d709000 changelog: 1.12.4
  • 9825c74 syntax: avoid re-canonicalizing the entire IntervalSet on push (#1308)
  • a7f2ff6 docs: clarify regex-lite word boundaries
  • 2c7b172 docs: clarify unsupported Anchored::Pattern searches
  • 839d16b regex-syntax-0.8.10
  • c4865a0 syntax: fix negation handling in HIR translation
  • d8761c0 cargo: also include benches
  • Additional commits viewable in compare view

Updates quick_cache from 0.6.22 to 0.7.0

Release notes

Sourced from quick_cache's releases.

v0.7.0

What's Changed

Full Changelog: arthurprs/quick-cache@v0.6.24...v0.7.0

v0.6.24

What's Changed

Full Changelog: arthurprs/quick-cache@v0.6.23...v0.6.24

v0.6.23

What's Changed

New Contributors

Full Changelog: arthurprs/quick-cache@v0.6.22...v0.6.23

Commits
  • 99809ce Add per-item access count stats (blocking and non-blocking) (#128)
  • 702a44b Bump hashbrown to 0.17 (raises MSRV to 1.85) (#130)
  • 7dff1b1 Abstract default hasher + switch to foldhash (quality) (#129)
  • 5ca720a Reshape lifecycle API: Default RequestState threaded by &mut (0.7.0) (#124)
  • 3a14610 0.6.24
  • 79fc813 Bound reserve() ghost headroom by additional
  • 993f4f3 Pre-allocate the slab in reserve() to avoid reallocation stalls
  • 95b0e40 0.6.23
  • 4cb2092 Fix MSRV build: qualify size_of, add cargo-msrv CI check (#121)
  • 52e42fb fix: memory leak in dropping uninserted guard (#120)
  • See full diff in compare view

Updates tower-http from 0.6.11 to 0.7.0

Release notes

Sourced from tower-http's releases.

tower-http-0.7.0

Changes since 0.6.11

Added

  • csrf: add cross-site request forgery (CSRF) protection middleware, porting the cross-origin protection scheme introduced in Go 1.25 (#699)

    use tower::ServiceBuilder;
    use tower_http::csrf::CsrfLayer;
    // Rejects cross-origin state-changing requests using Sec-Fetch-Site,
    // an Origin allow-list, and an Origin/Host fallback. No per-request
    // token state required.
    let layer = CsrfLayer::new().add_trusted_origin("https://example.com")?;
    let service = ServiceBuilder::new().layer(layer).service_fn(handler);

  • timeout: add DeadlineBody for non-resetting body timeouts, applied via the new RequestBodyDeadlineLayer and ResponseBodyDeadlineLayer (#688)

    Unlike TimeoutBody, which resets its deadline on every frame, DeadlineBody caps the total time of a body transfer. A slow client trickling one byte at a time never trips an idle timeout but will trip a deadline.

    use std::time::Duration;
    use tower::ServiceBuilder;
    use tower_http::timeout::RequestBodyDeadlineLayer;
    // Abort the request body transfer after 30s total, regardless of how
    // frequently data arrives.
    let service = ServiceBuilder::new()
    .layer(RequestBodyDeadlineLayer::new(Duration::from_secs(30)))
    .service_fn(handler);

  • fs: add strong ETag support to ServeDir, including If-Match and If-None-Match precondition handling per RFC 9110. 304 Not Modified responses now carry the ETag and Last-Modified validators (#691)

  • fs: add a Backend trait to make ServeDir work with non-filesystem sources (e.g. embedded assets or object storage). The default TokioBackend preserves existing behavior. Use ServeDir::with_backend() to plug in custom implementations (#684)

    use tower_http::services::fs::ServeDir;
    // MyBackend implements tower_http::services::fs::Backend.
    // The default ServeDir::new() continues to use TokioBackend (local FS).
    let service = ServeDir::with_backend("assets", MyBackend::new());

  • fs: add html_as_default_extension option to ServeDir, appending .html when the request path has no extension (#519)

  • fs: add redirect_path_prefix option to ServeDir, prepending a prefix on trailing-slash redirects so the service can be mounted under a sub-path (#486)

  • validate-request: add ValidateRequestHeaderLayer::has_header_value() to reject requests when a header does not have an expected value (#360)

  • body: UnsyncBoxBody::new() constructor and From<ServeFileSystemResponseBody> conversion to avoid double-boxing when combining ServeDir responses with other body types (#537)

  • limit: implement Default for limit::ResponseBody when the wrapped body also implements Default (#679)

Changed

... (truncated)

Commits
  • b194fcf v0.7.0
  • af828a6 feat(follow_redirect)!: preserve request extensions across redirects (#706)
  • 8cb8d99 feat(ValidateRequestHeaderLayer): add has_header("...").with_value("...") fun...
  • 3b56d2d feat!: Add configurable Backend trait for ServeDir, bump MSRV 1.65 (#684)
  • 8508716 Add redirect_path_prefix option (#486)
  • 56327b2 Add Windows drive-prefix path regression test (#705)
  • 54c6db8 feat(compression)!: upgrade SizeAbove threshold from u16 to u64 (#704)
  • 68cd6d8 Add DeadlineBody for non-resetting body timeouts (#688)
  • fa8a98c feat(fs): add strong ETag support to ServeDir (#691)
  • 36d2205 fix: Make SetMultiple*Header Clone for !Clone http bodies (#703)
  • Additional commits viewable in compare view

Updates diesel from 2.3.9 to 2.3.10

Changelog

Sourced from diesel's changelog.

[2.3.10] 2026-06-05

  • Fixed a wrong value of a internal MYSQL flag
  • Fixed several possible panics in the PostgreSQL deserialization code for malformed packages in the
  • Fixed an issue that caused unexpected results while calling custom aggregated SQL functions twice in the SQLite backend
  • Fixed a potential use after free bug in the SQLite backend while deserializing a database from a byte buffer
  • Fixed potential invalid schema generation if column or table names "inject" rust code
  • Fixed potential SQL injections during schema introspection via diesel print-schema
  • Fixed a regression that resulted in rejecting valid combinations of ORDER BY and GROUP BY clauses
Commits

Updates redis from 0.27.6 to 1.3.0

Release notes

Sourced from redis's releases.

redis-1.3.0

Changes & Bug fixes

Add numbered databases support for the cluster client (redis-rs/redis-rs#2146 by @​virratanasangpunth) fix(cluster): clamp retry backoff upper bound after min-wait floor (redis-rs/redis-rs#2158 by @​nihohit) docs/ci: add wasm32-wasip2 build support for tokio-comp (redis-rs/redis-rs#2153 by @​Prashantsinghchouhan) Add Bloom filter support (redis-rs/redis-rs#2117 by @​somechris)

CI & operational improvements

tests/version: Parse all available versions (Valkey, modules, ...) (Version refactor 6/10) (redis-rs/redis-rs#2143 by @​somechris) tests/version: Add disjunctive (OR) and conjunctive (AND) matchers (Version refactor 7/10) (redis-rs/redis-rs#2144 by @​somechris) tests/version: Drop Redis binary version parsing (Version refactor 8/10) (redis-rs/redis-rs#2145 by @​somechris) tests: Drop VERSION from version constants (version refactor 9/10) (redis-rs/redis-rs#2147 by @​somechris) Fix flakey object tests (redis-rs/redis-rs#2160 by @​nihohit) tests: Add test guards for Valkey servers (Version refactor 10/10) (redis-rs/redis-rs#2148 by @​somechris)

New Contributors

Full Changelog: redis-rs/redis-rs@redis-1.2.4...redis-1.3.0

redis-1.2.4

Changes & Bug fixes

  • cluster: refresh topology and retry on READONLY errors (#2115 by @​alexcole)
  • fix(aio): bound permit allocation by concurrency limit, not pipeline length (#2151 by @​Ali2Arslan)

CI & operational improvements

  • tests/cluster_async: Switch to positive version checking (Version refactor 1/8) (#2138 by @​somechris)
  • tests/basic: Switch version checks to constant (Version refactor 2/8) (#2139 by @​somechris)
  • tests: Split off version code into dedicated module (Version refactor 3/10) (#2140 by @​somechris)
  • tests/version: Add TestClusterVersioning trait for version handling (Version refactor 4/10) (#2141 by @​somechris)
  • tests: Delegate version comparison to TestClusterVersioning (Version refactor 5/10) (#2142 by @​somechris)
  • tests/version: Require ownership to check version support (Version refactor 5b/10) (#2152 by @​somechris)
  • tests: Use server binary from env to detect major version (#2149 by @​somechris)

New Contributors

Full Changelog: https://github.co...

Description has been truncated

…rectory with 62 updates

Bumps the production-dependencies group with 61 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [http](https://github.com/hyperium/http) | `1.4.1` | `1.4.2` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.11.1` | `1.12.0` |
| [opentelemetry](https://github.com/open-telemetry/opentelemetry-rust) | `0.31.0` | `0.32.0` |
| [opentelemetry_sdk](https://github.com/open-telemetry/opentelemetry-rust) | `0.31.0` | `0.32.1` |
| [quote](https://github.com/dtolnay/quote) | `1.0.45` | `1.0.46` |
| [syn](https://github.com/dtolnay/syn) | `2.0.117` | `2.0.118` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.102` | `1.0.103` |
| [error-stack](https://github.com/hashintel/hash) | `0.6.0` | `0.7.1` |
| [config](https://github.com/rust-cli/config-rs) | `0.15.23` | `0.15.25` |
| [toml](https://github.com/toml-rs/toml) | `0.8.23` | `1.1.2+spec-1.1.0` |
| [regex](https://github.com/rust-lang/regex) | `1.12.3` | `1.12.4` |
| [quick_cache](https://github.com/arthurprs/quick-cache) | `0.6.22` | `0.7.0` |
| [tower-http](https://github.com/tower-rs/tower-http) | `0.6.11` | `0.7.0` |
| [diesel](https://github.com/diesel-rs/diesel) | `2.3.9` | `2.3.10` |
| [redis](https://github.com/redis-rs/redis-rs) | `0.27.6` | `1.3.0` |
| [deadpool](https://github.com/deadpool-rs/deadpool) | `0.12.3` | `0.13.0` |
| [deadpool-redis](https://github.com/deadpool-rs/deadpool) | `0.16.0` | `0.23.0` |
| [jsonwebtoken](https://github.com/Keats/jsonwebtoken) | `10.3.0` | `10.4.0` |
| [bcrypt](https://github.com/Keats/rust-bcrypt) | `0.18.0` | `0.19.2` |
| [rand](https://github.com/rust-random/rand) | `0.9.4` | `0.10.1` |
| [hmac](https://github.com/RustCrypto/MACs) | `0.12.1` | `0.13.0` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.3.4` | `0.4.2` |
| [sha3](https://github.com/RustCrypto/hashes) | `0.10.9` | `0.11.0` |
| [sha2](https://github.com/RustCrypto/hashes) | `0.10.9` | `0.11.0` |
| [askama](https://github.com/askama-rs/askama) | `0.15.6` | `0.16.0` |
| [tera](https://github.com/Keats/tera) | `1.20.1` | `2.0.0` |
| [handlebars](https://github.com/sunng87/handlebars-rust) | `6.4.1` | `6.4.2` |
| [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite) | `0.28.0` | `0.29.0` |
| [tungstenite](https://github.com/snapview/tungstenite-rs) | `0.28.0` | `0.29.0` |
| [lapin](https://github.com/amqp-rs/lapin) | `2.5.5` | `4.10.0` |
| [rdkafka](https://github.com/fede1024/rust-rdkafka) | `0.36.2` | `0.39.0` |
| [brotli](https://github.com/dropbox/rust-brotli) | `7.0.0` | `8.0.3` |
| [h2](https://github.com/hyperium/h2) | `0.4.14` | `0.4.15` |
| [rustls](https://github.com/rustls/rustls) | `0.23.40` | `0.23.41` |
| [quinn](https://github.com/quinn-rs/quinn) | `0.11.9` | `0.11.11` |
| [utoipa-swagger-ui](https://github.com/juhaku/utoipa) | `8.1.0` | `9.0.2` |
| [ldap3](https://github.com/inejge/ldap3) | `0.11.5` | `0.12.1` |
| [alloy](https://github.com/alloy-rs/alloy) | `2.0.5` | `2.1.0` |
| [alloy-transport](https://github.com/alloy-rs/alloy) | `1.8.3` | `2.1.0` |
| [alloy-network](https://github.com/alloy-rs/alloy) | `1.8.3` | `2.1.0` |
| [alloy-rpc-types](https://github.com/alloy-rs/alloy) | `1.8.3` | `2.1.0` |
| [dialoguer](https://github.com/console-rs/dialoguer) | `0.11.0` | `0.12.0` |
| [indicatif](https://github.com/console-rs/indicatif) | `0.17.11` | `0.18.4` |
| [console](https://github.com/console-rs/console) | `0.15.11` | `0.16.3` |
| [rustyline](https://github.com/kkawakam/rustyline) | `15.0.0` | `17.0.2` |
| [colored](https://github.com/mackwic/colored) | `2.2.0` | `3.1.1` |
| [zip](https://github.com/zip-rs/zip2) | `2.4.2` | `3.0.0` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.116` | `1.0.117` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.14.0` | `0.15.0` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.44` | `0.4.45` |
| [time](https://github.com/time-rs/time) | `0.3.47` | `0.3.51` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.23.2` | `1.23.4` |
| [tracing-opentelemetry](https://github.com/tokio-rs/tracing-opentelemetry) | `0.32.1` | `0.33.0` |
| [opentelemetry-otlp](https://github.com/open-telemetry/opentelemetry-rust) | `0.31.1` | `0.32.0` |
| [log](https://github.com/rust-lang/log) | `0.4.31` | `0.4.33` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.10` | `0.11.11` |
| [bevy_reflect](https://github.com/bevyengine/bevy) | `0.13.2` | `0.19.0` |
| [flume](https://github.com/zesterer/flume) | `0.11.1` | `0.12.0` |
| [io-uring](https://github.com/tokio-rs/io-uring) | `0.7.11` | `0.7.12` |
| [prost](https://github.com/tokio-rs/prost) | `0.13.5` | `0.14.3` |
| [prost-types](https://github.com/tokio-rs/prost) | `0.13.5` | `0.14.3` |



Updates `http` from 1.4.1 to 1.4.2
- [Release notes](https://github.com/hyperium/http/releases)
- [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md)
- [Commits](hyperium/http@v1.4.1...v1.4.2)

Updates `bytes` from 1.11.1 to 1.12.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.11.1...v1.12.0)

Updates `opentelemetry` from 0.31.0 to 0.32.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.32.md)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry-prometheus-0.31.0...opentelemetry-0.32.0)

Updates `opentelemetry_sdk` from 0.31.0 to 0.32.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.32.md)
- [Commits](open-telemetry/opentelemetry-rust@v0.31.0...opentelemetry-semantic-conventions-0.32.1)

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

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

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

Updates `error-stack` from 0.6.0 to 0.7.1
- [Release notes](https://github.com/hashintel/hash/releases)
- [Commits](https://github.com/hashintel/hash/compare/error-stack@0.6.0...error-stack@0.7.1)

Updates `config` from 0.15.23 to 0.15.25
- [Changelog](https://github.com/rust-cli/config-rs/blob/main/CHANGELOG.md)
- [Commits](rust-cli/config-rs@v0.15.23...v0.15.25)

Updates `toml` from 0.8.23 to 1.1.2+spec-1.1.0
- [Commits](toml-rs/toml@toml-v0.8.23...toml-v1.1.2)

Updates `regex` from 1.12.3 to 1.12.4
- [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.12.3...1.12.4)

Updates `quick_cache` from 0.6.22 to 0.7.0
- [Release notes](https://github.com/arthurprs/quick-cache/releases)
- [Commits](arthurprs/quick-cache@v0.6.22...v0.7.0)

Updates `tower-http` from 0.6.11 to 0.7.0
- [Release notes](https://github.com/tower-rs/tower-http/releases)
- [Commits](tower-rs/tower-http@tower-http-0.6.11...tower-http-0.7.0)

Updates `diesel` from 2.3.9 to 2.3.10
- [Release notes](https://github.com/diesel-rs/diesel/releases)
- [Changelog](https://github.com/diesel-rs/diesel/blob/main/CHANGELOG.md)
- [Commits](diesel-rs/diesel@v2.3.9...v2.3.10)

Updates `redis` from 0.27.6 to 1.3.0
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-0.27.6...redis-1.3.0)

Updates `deadpool` from 0.12.3 to 0.13.0
- [Changelog](https://github.com/deadpool-rs/deadpool/blob/main/release.toml)
- [Commits](deadpool-rs/deadpool@deadpool-v0.12.3...deadpool-v0.13.0)

Updates `deadpool-redis` from 0.16.0 to 0.23.0
- [Changelog](https://github.com/deadpool-rs/deadpool/blob/main/release.toml)
- [Commits](deadpool-rs/deadpool@deadpool-redis-v0.16.0...deadpool-redis-v0.23.0)

Updates `jsonwebtoken` from 10.3.0 to 10.4.0
- [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md)
- [Commits](Keats/jsonwebtoken@v10.3.0...v10.4.0)

Updates `bcrypt` from 0.18.0 to 0.19.2
- [Commits](Keats/rust-bcrypt@v0.18.0...v0.19.2)

Updates `rand` from 0.9.4 to 0.10.1
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.9.4...0.10.1)

Updates `hmac` from 0.12.1 to 0.13.0
- [Commits](RustCrypto/MACs@hmac-v0.12.1...hmac-v0.13.0)

Updates `getrandom` from 0.3.4 to 0.4.2
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.3.4...v0.4.2)

Updates `sha3` from 0.10.9 to 0.11.0
- [Commits](RustCrypto/hashes@sha3-v0.10.9...sha3-v0.11.0)

Updates `sha2` from 0.10.9 to 0.11.0
- [Commits](RustCrypto/hashes@sha2-v0.10.9...sha2-v0.11.0)

Updates `askama` from 0.15.6 to 0.16.0
- [Release notes](https://github.com/askama-rs/askama/releases)
- [Commits](askama-rs/askama@v0.15.6...v0.16.0)

Updates `tera` from 1.20.1 to 2.0.0
- [Changelog](https://github.com/Keats/tera/blob/master/CHANGELOG.md)
- [Commits](Keats/tera@v1.20.1...v2.0.0)

Updates `handlebars` from 6.4.1 to 6.4.2
- [Release notes](https://github.com/sunng87/handlebars-rust/releases)
- [Changelog](https://github.com/sunng87/handlebars-rust/blob/master/CHANGELOG.md)
- [Commits](sunng87/handlebars-rust@v6.4.1...v6.4.2)

Updates `tokio-tungstenite` from 0.28.0 to 0.29.0
- [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md)
- [Commits](snapview/tokio-tungstenite@v0.28.0...v0.29.0)

Updates `tungstenite` from 0.28.0 to 0.29.0
- [Changelog](https://github.com/snapview/tungstenite-rs/blob/master/CHANGELOG.md)
- [Commits](snapview/tungstenite-rs@v0.28.0...v0.29.0)

Updates `lapin` from 2.5.5 to 4.10.0
- [Changelog](https://github.com/amqp-rs/lapin/blob/main/CHANGELOG.md)
- [Commits](amqp-rs/lapin@lapin-2.5.5...v4.10.0)

Updates `rdkafka` from 0.36.2 to 0.39.0
- [Changelog](https://github.com/fede1024/rust-rdkafka/blob/master/changelog.md)
- [Commits](fede1024/rust-rdkafka@v0.36.2...v0.39.0)

Updates `brotli` from 7.0.0 to 8.0.3
- [Release notes](https://github.com/dropbox/rust-brotli/releases)
- [Commits](dropbox/rust-brotli@7.0.0...8.0.3)

Updates `h2` from 0.4.14 to 0.4.15
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](hyperium/h2@v0.4.14...v0.4.15)

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

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

Updates `utoipa-swagger-ui` from 8.1.0 to 9.0.2
- [Release notes](https://github.com/juhaku/utoipa/releases)
- [Changelog](https://github.com/juhaku/utoipa/blob/master/utoipa-rapidoc/CHANGELOG.md)
- [Commits](juhaku/utoipa@utoipa-swagger-ui-8.1.0...utoipa-swagger-ui-9.0.2)

Updates `ldap3` from 0.11.5 to 0.12.1
- [Changelog](https://github.com/inejge/ldap3/blob/master/CHANGELOG.md)
- [Commits](inejge/ldap3@v0.11.5...v0.12.1)

Updates `alloy` from 2.0.5 to 2.1.0
- [Release notes](https://github.com/alloy-rs/alloy/releases)
- [Changelog](https://github.com/alloy-rs/alloy/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/alloy@v2.0.5...v2.1.0)

Updates `alloy-consensus` from 2.0.5 to 2.1.0
- [Release notes](https://github.com/alloy-rs/alloy/releases)
- [Changelog](https://github.com/alloy-rs/alloy/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/alloy@v2.0.5...v2.1.0)

Updates `alloy-transport` from 1.8.3 to 2.1.0
- [Release notes](https://github.com/alloy-rs/alloy/releases)
- [Changelog](https://github.com/alloy-rs/alloy/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/alloy@v1.8.3...v2.1.0)

Updates `alloy-network` from 1.8.3 to 2.1.0
- [Release notes](https://github.com/alloy-rs/alloy/releases)
- [Changelog](https://github.com/alloy-rs/alloy/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/alloy@v1.8.3...v2.1.0)

Updates `alloy-rpc-types` from 1.8.3 to 2.1.0
- [Release notes](https://github.com/alloy-rs/alloy/releases)
- [Changelog](https://github.com/alloy-rs/alloy/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/alloy@v1.8.3...v2.1.0)

Updates `dialoguer` from 0.11.0 to 0.12.0
- [Release notes](https://github.com/console-rs/dialoguer/releases)
- [Changelog](https://github.com/console-rs/dialoguer/blob/main/CHANGELOG-OLD.md)
- [Commits](console-rs/dialoguer@v0.11.0...v0.12.0)

Updates `indicatif` from 0.17.11 to 0.18.4
- [Release notes](https://github.com/console-rs/indicatif/releases)
- [Commits](console-rs/indicatif@0.17.11...0.18.4)

Updates `console` from 0.15.11 to 0.16.3
- [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.11...0.16.3)

Updates `rustyline` from 15.0.0 to 17.0.2
- [Release notes](https://github.com/kkawakam/rustyline/releases)
- [Changelog](https://github.com/kkawakam/rustyline/blob/master/History.md)
- [Commits](kkawakam/rustyline@v15.0.0...v17.0.2)

Updates `colored` from 2.2.0 to 3.1.1
- [Release notes](https://github.com/mackwic/colored/releases)
- [Changelog](https://github.com/colored-rs/colored/blob/master/CHANGELOG.md)
- [Commits](colored-rs/colored@v2.2.0...v3.1.1)

Updates `zip` from 2.4.2 to 3.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v2.4.2...v3.0.0)

Updates `trybuild` from 1.0.116 to 1.0.117
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.116...1.0.117)

Updates `itertools` from 0.14.0 to 0.15.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.14.0...v0.15.0)

Updates `chrono` from 0.4.44 to 0.4.45
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.44...v0.4.45)

Updates `time` from 0.3.47 to 0.3.51
- [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.47...v0.3.51)

Updates `uuid` from 1.23.2 to 1.23.4
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.23.2...v1.23.4)

Updates `tracing-opentelemetry` from 0.32.1 to 0.33.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.32.1...v0.33.0)

Updates `opentelemetry-otlp` from 0.31.1 to 0.32.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.32.md)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry-otlp-0.31.1...opentelemetry-otlp-0.32.0)

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

Updates `env_logger` from 0.11.10 to 0.11.11
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.11.10...v0.11.11)

Updates `bevy_reflect` from 0.13.2 to 0.19.0
- [Release notes](https://github.com/bevyengine/bevy/releases)
- [Commits](bevyengine/bevy@v0.13.2...v0.19.0)

Updates `flume` from 0.11.1 to 0.12.0
- [Changelog](https://github.com/zesterer/flume/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zesterer/flume/commits/0.12)

Updates `io-uring` from 0.7.11 to 0.7.12
- [Commits](tokio-rs/io-uring@v0.7.11...v0.7.12)

Updates `prost` from 0.13.5 to 0.14.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/prost@v0.13.5...v0.14.3)

Updates `prost-types` from 0.13.5 to 0.14.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/prost@v0.13.5...v0.14.3)

---
updated-dependencies:
- dependency-name: http
  dependency-version: 1.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: bytes
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: opentelemetry
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: opentelemetry_sdk
  dependency-version: 0.32.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: quote
  dependency-version: 1.0.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: syn
  dependency-version: 2.0.118
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: anyhow
  dependency-version: 1.0.103
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: error-stack
  dependency-version: 0.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: config
  dependency-version: 0.15.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: toml
  dependency-version: 1.1.2+spec-1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: regex
  dependency-version: 1.12.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: quick_cache
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: tower-http
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: diesel
  dependency-version: 2.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: redis
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: deadpool
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: deadpool-redis
  dependency-version: 0.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: jsonwebtoken
  dependency-version: 10.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: bcrypt
  dependency-version: 0.19.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: rand
  dependency-version: 0.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: hmac
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: getrandom
  dependency-version: 0.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: sha3
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: sha2
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: askama
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: tera
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: handlebars
  dependency-version: 6.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tokio-tungstenite
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: tungstenite
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: lapin
  dependency-version: 4.10.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: rdkafka
  dependency-version: 0.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: brotli
  dependency-version: 8.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: h2
  dependency-version: 0.4.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: rustls
  dependency-version: 0.23.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: quinn
  dependency-version: 0.11.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: utoipa-swagger-ui
  dependency-version: 9.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: ldap3
  dependency-version: 0.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: alloy
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: alloy-consensus
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: alloy-transport
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: alloy-network
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: alloy-rpc-types
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: dialoguer
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: indicatif
  dependency-version: 0.18.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: console
  dependency-version: 0.16.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: rustyline
  dependency-version: 17.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: colored
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zip
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: trybuild
  dependency-version: 1.0.117
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: itertools
  dependency-version: 0.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: chrono
  dependency-version: 0.4.45
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: time
  dependency-version: 0.3.51
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 1.23.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tracing-opentelemetry
  dependency-version: 0.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: opentelemetry-otlp
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: log
  dependency-version: 0.4.33
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: env_logger
  dependency-version: 0.11.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: bevy_reflect
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: flume
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: io-uring
  dependency-version: 0.7.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: prost
  dependency-version: 0.14.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: prost-types
  dependency-version: 0.14.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jun 28, 2026
@github-actions

Copy link
Copy Markdown

📦 Public API Changes

No public API changes.

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 rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant