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; 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`]. /// 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;