Skip to content

chore(deps): bump the rust-dependencies group with 19 updates #193

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

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

Conversation

dependabot[bot]
Copy link

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

Bumps the rust-dependencies group with 19 updates:

Package From To
iroh 0.34.1 0.91.1
iroh-base 0.34.1 0.91.1
iroh-blobs 0.34.1 0.35.0
attohttpc 0.24.1 0.30.1
event-listener 5.4.0 5.4.1
futures-lite 2.6.0 2.6.1
http 0.2.12 1.3.1
igd-next 0.15.1 0.16.2
iroh-metrics 0.32.0 0.34.0
iroh-relay 0.34.1 0.35.0
netwatch 0.4.0 0.5.0
pkarr 2.3.1 3.10.0
portmapper 0.4.1 0.5.0
quic-rpc 0.19.0 0.20.0
quic-rpc-derive 0.19.0 0.20.0
redb 2.6.1 2.4.0
signal-hook-registry 1.4.5 1.4.6
tokio-util 0.7.15 0.7.16
zerovec 0.11.2 0.11.3

Updates iroh from 0.34.1 to 0.91.1

Changelog

Sourced from iroh's changelog.

0.91.1 - 2025-08-04

🐛 Bug Fixes

  • (iroh) Always update the best addr after changes (#3422) - (36842d5)
  • (iroh) Use valid available IPv6 address, ignoring have_ipv6 (#3419) - (fe7240d)

📚 Documentation

0.91.0 - 2025-07-30

⛰️ Features

  • (iroh) Update to new relay servers (#3412) - (f3e4307)
  • (iroh,iroh-relay) [breaking] Use stride instead of custom split protocol, send ECN bits (#3389) - (f3fd988)
  • (iroh-relay) [breaking] Implement new handshake protocol, refactor frame types (#3331) - (3a1592a)
  • [breaking] Update to edition 2024 and update deps to latest (#3386) - (e2cfde7)
  • Add the timeout duration to the relay dial error (#3406) - (db36c65)

🐛 Bug Fixes

  • (iroh) Use std Mutex instead of tokio Mutex (#3374) - (eb383a6)
  • (iroh) Track path validity for all paths and replace BestAddr with PathValidity (#3400) - (a3187ca)
  • (iroh) Re-batch received relay datagram batches in case they exceed max_receive_segments (#3414) - (a8485ad)
  • (iroh) Only clear last_call_me_maybe when the best addr became invalid (#3415) - (bcb60d4)
  • (iroh-relay) Fix proptests, make Datagrams::segment_size be an Option<NonZeroU16> (#3404) - (75fd57c)
  • Fix dht publishing at startup (#3397) - (dd1d692)
  • Better tracing spans (#3399) - (f8f7f95)
  • Add missing use<> for wasm_browser (#3411) - (91c2e63)
  • Wait for at least one ipv6 and ipv4 qad report (#3413) - (b755db4)

🚜 Refactor

  • (iroh,iroh-relay) Remove legacy relay path, make websocket connections default (#3384) - (0776687)

📚 Documentation

  • (iroh) Use iroh::Watcher reexport in docs (#3375) - (9c023bf)

🧪 Testing

  • (iroh) Make endpoint_relay_connect_loop not flaky (#3402) - (8426241)

⚙️ Miscellaneous Tasks

... (truncated)

Commits
  • e30c788 chore: Release
  • fe7240d fix(iroh): Use valid available IPv6 address, ignoring have_ipv6 (#3419)
  • 36842d5 fix(iroh): Always update the best addr after changes (#3422)
  • 026dffc docs: grammar nitpick (#3383)
  • 36ddb5b chore: Release
  • bcb60d4 fix(iroh): Only clear last_call_me_maybe when the best addr became invalid ...
  • a8485ad fix(iroh): Re-batch received relay datagram batches in case they exceed `max_...
  • b755db4 fix: wait for at least one ipv6 and ipv4 qad report (#3413)
  • f3e4307 feat(iroh): update to new relay servers (#3412)
  • ee08341 chore(iroh): Update portmapper (#3410)
  • Additional commits viewable in compare view

Updates iroh-base from 0.34.1 to 0.91.1

Release notes

Sourced from iroh-base's releases.

v0.91.0

⚠️ Breaking Changes

  • iroh

    • changed
      • edition is now set to edition2024

      • The relay wire protocol changed: All relayed messages now contain at least an additional ECN byte.

        They might be accidentally compatible when GSO is not enabled, but they're likely not.

        This means this version of iroh can't connect to older relays or older clients on newer relays.

        • ClientToRelayMsg::SendPacket was removed in favor of ClientToRelayMsg::Datagrams
        • RelayToClientMsg::ReceivedPacket was removed in favor of RelayToClientMsg::Datagrams
        • FrameType has changed variants:
          • SendPacket and RecvPacket were removed
          • ClientToRelayDatagram and ClientToRelayDatagramBatch were added
          • RelayToClientDatagram and RelayToClientDatagramBatch were added
      • The default relay URLs have changed. We are still maintaining relay URLs for version 0.90.0, those will be phased out next release.

      • Updated n0-watcher from version 0.2 to 0.3

        • Migration guide for users:
          • endpoint.node_addr().initialized().await? -> endpoint.node_addr().initialized().await (no ? needed anymore) and similarly for endpoint.home_relay() and other uses of Watchers.
          • endpoint.node_addr().get()? -> endpoint.node_addr().get() and similarly for endpoint.home_relay() and other uses of Watchers.
          • If all you have is a &impl Watcher but you need the current value, then you can't call Watcher::get anymore, as that now takes a &mut self instead of &self. You can work around this by .clone()ing to an intermediate watcher:watcher_ref.get() -> watcher_ref.clone().get()
    • removed
      • Removed iroh::discovery::pkarr::dht::Builder::initial_publish_delay
      • Removed iroh::endpoint::Builder::relay_conn_protocol. It's now always websockets
      • Removed the iroh::RelayProtocol re-export (the type was removed in iroh-relay)
  • iroh-relay

    • removed
      • Removed iroh_relay::client::SendMessage and iroh_relay::client::ReceivedMessage in favor of ClientToRelayMsg and RelayToClientMsg respectively.
      • Removed ClientBuilder::is_prober
      • Removed ClientBuilder::protocol
      • Removed http::Protocol type
      • Removed relay_accepts and websocket_accepts metrics
    • changed
      • impl Stream for Client now produces RelayToClientMsg instead of ReceivedMessage
      • Client now impl Sink<ClientToRelayMsg> instead of impl Sink<SendMessage>
      • Moved protos::relay::FrameType to protos::common::FrameType and adjusted frame types to those of the current set of protocols
      • Renamed frames_rx_ratelimited_total metric to bytes_rx_ratelimited_total, which now tracks bytes not frames

⛰️ Features

  • (iroh) Update to new relay servers (#3412) - (f3e4307)
  • (iroh,iroh-relay) [breaking] Use stride instead of custom split protocol, send ECN bits (#3389) - (f3fd988)
  • (iroh-relay) [breaking] Implement new handshake protocol, refactor frame types (#3331) - (3a1592a)
  • [breaking] Update to edition 2024 and update deps to latest (#3386) - (e2cfde7)
  • Add the timeout duration to the relay dial error (#3406) - (db36c65)

... (truncated)

Changelog

Sourced from iroh-base's changelog.

0.91.1 - 2025-08-04

🐛 Bug Fixes

  • (iroh) Always update the best addr after changes (#3422) - (36842d5)
  • (iroh) Use valid available IPv6 address, ignoring have_ipv6 (#3419) - (fe7240d)

📚 Documentation

0.91.0 - 2025-07-30

⛰️ Features

  • (iroh) Update to new relay servers (#3412) - (f3e4307)
  • (iroh,iroh-relay) [breaking] Use stride instead of custom split protocol, send ECN bits (#3389) - (f3fd988)
  • (iroh-relay) [breaking] Implement new handshake protocol, refactor frame types (#3331) - (3a1592a)
  • [breaking] Update to edition 2024 and update deps to latest (#3386) - (e2cfde7)
  • Add the timeout duration to the relay dial error (#3406) - (db36c65)

🐛 Bug Fixes

  • (iroh) Use std Mutex instead of tokio Mutex (#3374) - (eb383a6)
  • (iroh) Track path validity for all paths and replace BestAddr with PathValidity (#3400) - (a3187ca)
  • (iroh) Re-batch received relay datagram batches in case they exceed max_receive_segments (#3414) - (a8485ad)
  • (iroh) Only clear last_call_me_maybe when the best addr became invalid (#3415) - (bcb60d4)
  • (iroh-relay) Fix proptests, make Datagrams::segment_size be an Option<NonZeroU16> (#3404) - (75fd57c)
  • Fix dht publishing at startup (#3397) - (dd1d692)
  • Better tracing spans (#3399) - (f8f7f95)
  • Add missing use<> for wasm_browser (#3411) - (91c2e63)
  • Wait for at least one ipv6 and ipv4 qad report (#3413) - (b755db4)

🚜 Refactor

  • (iroh,iroh-relay) Remove legacy relay path, make websocket connections default (#3384) - (0776687)

📚 Documentation

  • (iroh) Use iroh::Watcher reexport in docs (#3375) - (9c023bf)

🧪 Testing

  • (iroh) Make endpoint_relay_connect_loop not flaky (#3402) - (8426241)

⚙️ Miscellaneous Tasks

... (truncated)

Commits
  • e30c788 chore: Release
  • fe7240d fix(iroh): Use valid available IPv6 address, ignoring have_ipv6 (#3419)
  • 36842d5 fix(iroh): Always update the best addr after changes (#3422)
  • 026dffc docs: grammar nitpick (#3383)
  • 36ddb5b chore: Release
  • bcb60d4 fix(iroh): Only clear last_call_me_maybe when the best addr became invalid ...
  • a8485ad fix(iroh): Re-batch received relay datagram batches in case they exceed `max_...
  • b755db4 fix: wait for at least one ipv6 and ipv4 qad report (#3413)
  • f3e4307 feat(iroh): update to new relay servers (#3412)
  • ee08341 chore(iroh): Update portmapper (#3410)
  • Additional commits viewable in compare view

Updates iroh-blobs from 0.34.1 to 0.35.0

Changelog

Sourced from iroh-blobs's changelog.

0.35.0 - 2025-05-12

⛰️ Features

  • [breaking] Allow configuring the downloader when creating a blobs protocol handler (#76) - (60be4ff)

🐛 Bug Fixes

🚜 Refactor

  • [breaking] Update to latest iroh-metrics version, use non-global metrics collection (#85) - (0308a77)

⚙️ Miscellaneous Tasks

  • (deps) Bump mozilla-actions/sccache-action from 0.0.8 to 0.0.9 in the github-actions group (#79) - (d2ff3b1)
  • Post correct link to discord about flaky failures. (#83) - (ce939a2)
  • Fix redb version to the latest version that uses edition 2021 (#88) - (25af32b)
  • Update to iroh v0.35 (#91) - (8a975ec)
Commits
  • 4e8c767 chore: Release iroh-blobs version 0.35.0
  • 60be4ff feat!: Allow configuring the downloader when creating a blobs protocol handle...
  • 8a975ec chore: update to iroh v0.35 (#91)
  • 0308a77 refactor!: update to latest iroh-metrics version, use non-global metrics coll...
  • fbc6f47 fix: use latest bao-tree (#82)
  • 25af32b chore: Fix redb version to the latest version that uses edition 2021 (#88)
  • ce939a2 ci: Post correct link to discord about flaky failures. (#83)
  • d2ff3b1 build(deps): bump mozilla-actions/sccache-action from 0.0.8 to 0.0.9 in the g...
  • See full diff in compare view

Updates attohttpc from 0.24.1 to 0.30.1

Release notes

Sourced from attohttpc's releases.

v0.30.1

What's Changed

Full Changelog: sbstp/attohttpc@v0.30.0...v0.30.1

v0.30.0

What's Changed

New Contributors

Full Changelog: sbstp/attohttpc@v0.29.2...v0.30.0

v0.29.2

What's Changed

Full Changelog: sbstp/attohttpc@v0.29.1...v0.29.2

v0.29.1

What's Changed

New Contributors

Full Changelog: sbstp/attohttpc@v0.29.0...v0.29.1

v0.29.0

What's Changed

Full Changelog: sbstp/attohttpc@v0.28.5...v0.29.0

v0.28.5

What's Changed

... (truncated)

Commits
  • 3235a87 Version 0.30.1
  • 681ba2d fix: remove deprecated rustls feature flag
  • 7b55a4e Version 0.30.0
  • 4d9ab02 Update webpki-roots requirement from 0.26.8 to 1.0.1
  • 96c6c5c chore: test single-threaded feature flag in CI
  • 448e3f8 add single_threaded feature flag
  • 03295a9 chore: add tls-rustls-webpki-roots-ring and tls-rustls-native-roots-ring ...
  • b6daa39 rustls: add feature flags tls-rustls-webpki-roots-ring and `tls-rustls-nati...
  • 41e73fc Support WASI platforms
  • 8500cda Version 0.29.2
  • Additional commits viewable in compare view

Updates event-listener from 5.4.0 to 5.4.1

Release notes

Sourced from event-listener's releases.

v5.4.1

  • Fix a copy-paste error in wait_timeout docs (#152)
Changelog

Sourced from event-listener's changelog.

Version 5.4.1

  • Fix a copy-paste error in wait_timeout docs (#152)
Commits
  • 0c18ca2 v5.4.1
  • 56d87b4 Update criterion requirement from 0.6 to 0.7 (#156)
  • 810a6db Update criterion requirement from 0.5 to 0.6 (#153)
  • 91a936e Fix doctest on WASM
  • 323da40 Fix clippy::mem_replace_option_with_some warning
  • 29e15c0 ci: Re-enable WASM test
  • a8aefba Merge pull request #152 from JamesHallowell/fix-wait-timeout-docs
  • 9870df3 Minor amendment to wait_timeout docs
  • 51ae140 ci: Use reusable workflows for fmt and security_audit
  • See full diff in compare view

Updates futures-lite from 2.6.0 to 2.6.1

Release notes

Sourced from futures-lite's releases.

v2.6.1

  • Fix docs for once_future and stop_after_future. (#131)
Changelog

Sourced from futures-lite's changelog.

Version 2.6.1

  • Fix docs for once_future and stop_after_future. (#131)
Commits

Updates http from 0.2.12 to 1.3.1

Release notes

Sourced from http's releases.

v1.3.1

What's Changed

Full Changelog: hyperium/http@v1.3.0...v1.3.1

v1.3.0

What's Changed

  • Allow most UTF-8 characters in URI path and query. (hyperium/http#715)
    • This means paring Uris with previously illegal characters according the original RFC will now be accepted. They used to be rejected in the name of spec purity, but many operators were using a fork of http because reality is that most characters are seen in the real world.
  • Fix HeaderMap::reserve() to allocate sufficient capacity.

New Contributors

Thanks!

Full Changelog: hyperium/http@v1.2.0...v1.3.0

v1.2.0

What's Changed

  • Add StatusCode::TOO_EARLY constant for 425 status. (#725)
  • Loosen TryFrom<HashMap> for HeaderMap to work with any state generic. (#729)
  • Change Builder methods to use TryInto instead of TryFrom arguments. (#730)
  • Make StatusCode::as_u16 a const function. (#680)
  • Fix Method parsing to allow #$%&' characters. (#713)
  • Fix HeaderName parsing to reject " characters. (#716)
  • Fix off by 1 error in Method::from_bytes that could cause extra allocations. (#708)
  • Fix HeaderMap capacity calculation in some cases (#710)

New Contributors

... (truncated)

Changelog

Sourced from http's changelog.

1.3.1 (March 11, 2025)

  • Fix validation that all characters are UTF-8 in URI path and query.

1.3.0 (March 11, 2025)

  • Allow most UTF-8 characters in URI path and query.
  • Fix HeaderMap::reserve() to allocate sufficient capacity.

1.2.0 (December 3, 2024)

  • Add StatusCode::TOO_EARLY constant for 425 status.
  • Loosen TryFrom<HashMap> for HeaderMap to work with any state generic.
  • Change Builder methods to use TryInto instead of TryFrom arguments.
  • Make StatusCode::as_u16 a const function.
  • Fix Method parsing to allow #$%&' characters.
  • Fix HeaderName parsing to reject " characters.
  • Fix off by 1 error in Method::from_bytes that could cause extra allocations.

1.1.0 (March 4, 2024)

  • Add methods to allow trying to allocate in the HeaderMap, returning an error if oversize instead of panicking.
  • Add Extensions::get_or_insert() method.
  • Implement From<Uri> for uri::Builder.
  • Fix HeaderName::from_lowercase that could allow NUL bytes in some cases.

1.0.0 (November 15, 2023)

  • Implement Clone for Request, Response, and Extensions. This breaking change requires that all extensions now implement Clone.
  • Add a default-on std feature. Disabling it currently is not supported.
  • Fix MIRI warnings in HeaderMap::iter().

0.2.10 (November 10, 2023)

  • Fix parsing of Authority to handle square brackets in incorrect order.
  • Fix HeaderMap::with_capacity() to handle arithmetic overflow.

0.2.9 (February 17, 2023)

  • Add HeaderName constants for cache-status and cdn-cache-control.
  • Implement Hash for PathAndQuery.
  • Re-export HeaderName at crate root.

0.2.8 (June 6, 2022)

  • Fix internal usage of uninitialized memory to use MaybeUninit inside HeaderName.

0.2.7 (April 28, 2022)

... (truncated)

Commits
  • 8c1fb20 v1.3.1
  • 6637a72 fix: validate path bytes are at least utf8 (#756)
  • d0dd91e v1.3.0
  • 64bd92b docs: Fixed encryption/compression typo for 'accept-encoding: identity'. (#695)
  • b03ed6a chore: use range.contains in StatusCode methods (#748)
  • a463fb5 chore(ci): use yq to get rust-version in manifest (#746)
  • 68845bd fix: HeaderMap::reserve allocates insufficient capacity (#741)
  • 4e02046 refactor(header): remove BytesMut inline optimization when creating (#738)
  • 091ee9a feat(uri): allow utf8 char, not rfc 3986 compliant, in path and query (#715)
  • a912445 v1.2.0
  • Additional commits viewable in compare view

Updates igd-next from 0.15.1 to 0.16.2

Commits

Updates iroh-metrics from 0.32.0 to 0.34.0

Changelog

Sourced from iroh-metrics's changelog.

0.34.0 - 2025-04-30

⛰️ Features

  • Add derive for MetricsGroupSet (#23) - (ab86735)

🚜 Refactor

  • [breaking] Make metrics raw atomics, remove prometheus_client dependency (#22) - (27fb9b5)
  • [breaking] Replace thiserror with snafu (#24) - (a589407)

⚙️ Miscellaneous Tasks

0.33.0 - 2025-04-16

⚙️ Miscellaneous Tasks

iroh-metrics-derive-v0.1.0 - 2025-04-16

🐛 Bug Fixes

🚜 Refactor

  • [breaking] Make global core optional, add derive macro, add MetricsGroup and MetricsGroupSet traits, reoganize modules (#15) - (90f3038)

⚙️ Miscellaneous Tasks

  • Iroh-metrics-derive release prep - (e79f91d)
Commits
  • 017aa27 chore: Release
  • 33ee40e chore: Release
  • a589407 refactor!: replace thiserror with snafu (#24)
  • 55b432d chore: add ignore to deny.toml (#25)
  • ab86735 feat: Add derive for MetricsGroupSet (#23)
  • 27fb9b5 refactor!: Make metrics raw atomics, remove prometheus_client dependency (#22)
  • c467cfe chore: Release
  • e79f91d chore: iroh-metrics-derive release prep
  • 90f3038 refactor!: make global core optional, add derive macro, add MetricsGroup an...
  • 40a8716 fix(ci): doc url (#19)
  • See full diff in compare view

Updates iroh-relay from 0.34.1 to 0.35.0

Release notes

Sourced from iroh-relay's releases.

v0.35.0

⚠️ Breaking Changes

  • iroh
    • remove
      • pub fn default_from_node(url: RelayUrl, stun_port: u16) -> RelayMap
    • change
      • pub fn from_url(url: RelayUrl) -> RelayMap, use From<RelayUrl> instead
      • Router::spawn is now a plain function instead of an async fn
      • Router::spawn is now infallible, instead of returning anyhow::Result<()>
      • All metrics structs (iroh::metrics::{MagicsockMetrics, PortmapMetrics, NetReportMetrics}) now implement MetricsGroup from the new version 0.34 of iroh-metrics and no longer implement traits from [email protected].
      • Metrics are no longer registered onto the static superglobal Core. iroh does not use static_core feature of iroh-metrics. Metrics are now exposed from the subsystems that track them, see e.g. Endpoint::metrics.
      • Several methods now take a Metrics argument. You can always pass Default::default if you don't want to unify metrics tracking with other sections.
      • pkarr::SignedPacket, as used as a parameter in iroh::dns::node_info::NodeInfo::to_pkarr_signed_packet and iroh::dns::node_info::NodeInfo::from_pkarr_signed_packet is now expecting pkarr at major version 3 instead of 2
  • iroh-relay
    • change
      • Minor change in the From impls for ConnSendError due to changing the underlying library

⛰️ Features

  • (iroh) Allow connecting with "fallback" ALPNs (#3282) - (839bfaa)
  • (iroh) Add net-report method on the iroh::Endpoint that returns a Watchable<Report> (#3293) - (3448b4b)
  • (iroh,iroh-relay) Enable proxying and test-utils support for websockets, allow configuring websockets in endpoint::Builder (#3217) - (8a24a95)
  • (iroh-relay) [breaking] Adjust APIs to make it easier to create RelayMaps from lists of RelayUrls (#3292) - (cd0a47a)
  • Update to [email protected] (#3274) - (1d79f92)
  • [breaking] Metrics refactor (#3262) - (1957ca8)
  • Fix minimal crates selection (#3255) - (a62a2bd)
  • Improve transfer, publish, resolve examples (#3296) - (30577d3)

🐛 Bug Fixes

  • (iroh) [breaking] Update dependencies & fix 0-RTT with newer rustls by pulling the expected NodeId out of the ServerName in verifiers (#3290) - (af882a6)
  • (iroh-dns-server) Backwards compatibility for packets stored with iroh-dns-server v0.34 or lower (#3295) - (74b8baa)
  • (iroh-dns-server) Fixes for packet expiry (#3297) - (146f423)
  • (iroh-relay) Don't stop relay client actor if queues become full (#3294) - (f3c9af3)

⚙️ Miscellaneous Tasks

Deps

Changelog

Sourced from iroh-relay's changelog.

0.35.0 - 2025-05-12

⛰️ Features

  • (iroh) Allow connecting with "fallback" ALPNs (

Bumps the rust-dependencies group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [iroh](https://github.com/n0-computer/iroh) | `0.34.1` | `0.91.1` |
| [iroh-base](https://github.com/n0-computer/iroh) | `0.34.1` | `0.91.1` |
| [iroh-blobs](https://github.com/n0-computer/iroh-blobs) | `0.34.1` | `0.35.0` |
| [attohttpc](https://github.com/sbstp/attohttpc) | `0.24.1` | `0.30.1` |
| [event-listener](https://github.com/smol-rs/event-listener) | `5.4.0` | `5.4.1` |
| [futures-lite](https://github.com/smol-rs/futures-lite) | `2.6.0` | `2.6.1` |
| [http](https://github.com/hyperium/http) | `0.2.12` | `1.3.1` |
| [igd-next](https://github.com/dariusc93/rust-igd) | `0.15.1` | `0.16.2` |
| [iroh-metrics](https://github.com/n0-computer/iroh-metrics) | `0.32.0` | `0.34.0` |
| [iroh-relay](https://github.com/n0-computer/iroh) | `0.34.1` | `0.35.0` |
| [netwatch](https://github.com/n0-computer/net-tools) | `0.4.0` | `0.5.0` |
| [pkarr](https://github.com/pubky/pkarr) | `2.3.1` | `3.10.0` |
| [portmapper](https://github.com/n0-computer/net-tools) | `0.4.1` | `0.5.0` |
| [quic-rpc](https://github.com/n0-computer/quic-rpc) | `0.19.0` | `0.20.0` |
| [quic-rpc-derive](https://github.com/n0-computer/quic-rpc) | `0.19.0` | `0.20.0` |
| [redb](https://github.com/cberner/redb) | `2.6.1` | `2.4.0` |
| [signal-hook-registry](https://github.com/vorner/signal-hook) | `1.4.5` | `1.4.6` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.15` | `0.7.16` |
| [zerovec](https://github.com/unicode-org/icu4x) | `0.11.2` | `0.11.3` |


Updates `iroh` from 0.34.1 to 0.91.1
- [Release notes](https://github.com/n0-computer/iroh/releases)
- [Changelog](https://github.com/n0-computer/iroh/blob/main/CHANGELOG.md)
- [Commits](n0-computer/iroh@v0.34.1...v0.91.1)

Updates `iroh-base` from 0.34.1 to 0.91.1
- [Release notes](https://github.com/n0-computer/iroh/releases)
- [Changelog](https://github.com/n0-computer/iroh/blob/main/CHANGELOG.md)
- [Commits](n0-computer/iroh@v0.34.1...v0.91.1)

Updates `iroh-blobs` from 0.34.1 to 0.35.0
- [Release notes](https://github.com/n0-computer/iroh-blobs/releases)
- [Changelog](https://github.com/n0-computer/iroh-blobs/blob/main/CHANGELOG.md)
- [Commits](n0-computer/iroh-blobs@v0.34.1...v0.35.0)

Updates `attohttpc` from 0.24.1 to 0.30.1
- [Release notes](https://github.com/sbstp/attohttpc/releases)
- [Commits](sbstp/attohttpc@v0.24.1...v0.30.1)

Updates `event-listener` from 5.4.0 to 5.4.1
- [Release notes](https://github.com/smol-rs/event-listener/releases)
- [Changelog](https://github.com/smol-rs/event-listener/blob/master/CHANGELOG.md)
- [Commits](smol-rs/event-listener@v5.4.0...v5.4.1)

Updates `futures-lite` from 2.6.0 to 2.6.1
- [Release notes](https://github.com/smol-rs/futures-lite/releases)
- [Changelog](https://github.com/smol-rs/futures-lite/blob/master/CHANGELOG.md)
- [Commits](smol-rs/futures-lite@v2.6.0...v2.6.1)

Updates `http` from 0.2.12 to 1.3.1
- [Release notes](https://github.com/hyperium/http/releases)
- [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md)
- [Commits](hyperium/http@v0.2.12...v1.3.1)

Updates `igd-next` from 0.15.1 to 0.16.2
- [Commits](https://github.com/dariusc93/rust-igd/commits)

Updates `iroh-metrics` from 0.32.0 to 0.34.0
- [Release notes](https://github.com/n0-computer/iroh-metrics/releases)
- [Changelog](https://github.com/n0-computer/iroh-metrics/blob/main/CHANGELOG.md)
- [Commits](n0-computer/iroh-metrics@v0.32.0...v0.34.0)

Updates `iroh-relay` from 0.34.1 to 0.35.0
- [Release notes](https://github.com/n0-computer/iroh/releases)
- [Changelog](https://github.com/n0-computer/iroh/blob/main/CHANGELOG.md)
- [Commits](n0-computer/iroh@v0.34.1...v0.35.0)

Updates `netwatch` from 0.4.0 to 0.5.0
- [Commits](n0-computer/net-tools@netwatch-v0.4.0...netwatch-v0.5.0)

Updates `pkarr` from 2.3.1 to 3.10.0
- [Release notes](https://github.com/pubky/pkarr/releases)
- [Commits](https://github.com/pubky/pkarr/commits)

Updates `portmapper` from 0.4.1 to 0.5.0
- [Commits](n0-computer/net-tools@portmapper-v0.4.1...portmapper-v0.5.0)

Updates `quic-rpc` from 0.19.0 to 0.20.0
- [Changelog](https://github.com/n0-computer/quic-rpc/blob/main/CHANGELOG.md)
- [Commits](n0-computer/quic-rpc@quic-rpc-derive-v0.19.0...quic-rpc-derive-v0.20.0)

Updates `quic-rpc-derive` from 0.19.0 to 0.20.0
- [Changelog](https://github.com/n0-computer/quic-rpc/blob/main/CHANGELOG.md)
- [Commits](n0-computer/quic-rpc@quic-rpc-derive-v0.19.0...quic-rpc-derive-v0.20.0)

Updates `redb` from 2.6.1 to 2.4.0
- [Release notes](https://github.com/cberner/redb/releases)
- [Changelog](https://github.com/cberner/redb/blob/master/CHANGELOG.md)
- [Commits](cberner/redb@v2.6.1...v2.4.0)

Updates `signal-hook-registry` from 1.4.5 to 1.4.6
- [Changelog](https://github.com/vorner/signal-hook/blob/master/CHANGELOG.md)
- [Commits](vorner/signal-hook@registry-v1.4.5...registry-v1.4.6)

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

Updates `zerovec` from 0.11.2 to 0.11.3
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits/ind/[email protected])

---
updated-dependencies:
- dependency-name: iroh
  dependency-version: 0.91.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: iroh-base
  dependency-version: 0.91.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: iroh-blobs
  dependency-version: 0.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: attohttpc
  dependency-version: 0.30.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: event-listener
  dependency-version: 5.4.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: futures-lite
  dependency-version: 2.6.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: http
  dependency-version: 1.3.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: rust-dependencies
- dependency-name: igd-next
  dependency-version: 0.16.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: iroh-metrics
  dependency-version: 0.34.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: iroh-relay
  dependency-version: 0.35.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: netwatch
  dependency-version: 0.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: pkarr
  dependency-version: 3.10.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: rust-dependencies
- dependency-name: portmapper
  dependency-version: 0.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: quic-rpc
  dependency-version: 0.20.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: quic-rpc-derive
  dependency-version: 0.20.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: redb
  dependency-version: 2.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: signal-hook-registry
  dependency-version: 1.4.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: tokio-util
  dependency-version: 0.7.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: zerovec
  dependency-version: 0.11.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Aug 5, 2025
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.

0 participants