From 0fcc394fc93dca8147679990ff550e3750a55bd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramfox=E2=80=9D?= <“kasey@n0.computer”> Date: Thu, 9 Oct 2025 12:49:09 -0400 Subject: [PATCH 1/3] chore: upgrade nightly version in CI and doc workflows --- .github/workflows/ci.yaml | 2 +- .github/workflows/docs.yaml | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 70c6a4fe..f1df4405 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -205,7 +205,7 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2025-05-01 + toolchain: nightly-2025-10-09 - name: Install sccache uses: mozilla-actions/sccache-action@v0.0.9 diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index eba55e24..04068f41 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2025-05-01 + toolchain: nightly-2025-10-09 - name: Install sccache uses: mozilla-actions/sccache-action@v0.0.9 diff --git a/src/lib.rs b/src/lib.rs index 68d01448..215c0a7b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -33,7 +33,7 @@ //! //! [paper]: https://arxiv.org/abs/2212.13567 #![deny(missing_docs, rustdoc::broken_intra_doc_links)] -#![cfg_attr(iroh_docsrs, feature(doc_auto_cfg))] +#![cfg_attr(iroh_docsrs, feature(doc_cfg))] pub mod metrics; pub mod net; From 35dc222ebb6dfa8b50a667b35e8da3464673e54c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramfox=E2=80=9D?= <“kasey@n0.computer”> Date: Thu, 9 Oct 2025 13:02:46 -0400 Subject: [PATCH 2/3] chore: fix broken doc link --- src/store/pubkeys.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/pubkeys.rs b/src/store/pubkeys.rs index 77209348..005e8675 100644 --- a/src/store/pubkeys.rs +++ b/src/store/pubkeys.rs @@ -11,7 +11,7 @@ use crate::{AuthorId, AuthorPublicKey, NamespaceId, NamespacePublicKey}; /// /// Used to cache [`ed25519_dalek::VerifyingKey`]. /// -/// This trait is implemented for the unit type [`()`], where no caching is used. +/// This trait is implemented for the unit type `()`, where no caching is used. pub trait PublicKeyStore { /// Convert a byte array into a [`VerifyingKey`]. /// From e123733aa318ce501b0d3803aade52a7d92a584d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramfox=E2=80=9D?= <“kasey@n0.computer”> Date: Thu, 9 Oct 2025 13:08:35 -0400 Subject: [PATCH 3/3] chore: more doc fixes --- src/ticket.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ticket.rs b/src/ticket.rs index 8301ac44..f51f289f 100644 --- a/src/ticket.rs +++ b/src/ticket.rs @@ -1,4 +1,4 @@ -//! Tickets for [`iroh-docs`] documents. +//! Tickets for `iroh-docs` documents. use iroh::NodeAddr; use iroh_base::ticket;