Skip to content

Commit 415f62a

Browse files
ramfox“ramfox”
andauthored
chore: upgrade nightly version in CI and doc workflows (#72)
## Description rustdocs is broken because we are using a feature that no longer exists in nightly. this updates our workflows to use a more recent version of nightly and also adjusts the naming of the feature in question --------- Co-authored-by: “ramfox” <“kasey@n0.computer”>
1 parent b9bcd92 commit 415f62a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
- uses: actions/checkout@v4
206206
- uses: dtolnay/rust-toolchain@master
207207
with:
208-
toolchain: nightly-2025-05-01
208+
toolchain: nightly-2025-10-09
209209
- name: Install sccache
210210
uses: mozilla-actions/sccache-action@v0.0.9
211211

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v4
3333
- uses: dtolnay/rust-toolchain@master
3434
with:
35-
toolchain: nightly-2025-05-01
35+
toolchain: nightly-2025-10-09
3636
- name: Install sccache
3737
uses: mozilla-actions/sccache-action@v0.0.9
3838

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
//!
3434
//! [paper]: https://arxiv.org/abs/2212.13567
3535
#![deny(missing_docs, rustdoc::broken_intra_doc_links)]
36-
#![cfg_attr(iroh_docsrs, feature(doc_auto_cfg))]
36+
#![cfg_attr(iroh_docsrs, feature(doc_cfg))]
3737

3838
pub mod metrics;
3939
pub mod net;

src/store/pubkeys.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::{AuthorId, AuthorPublicKey, NamespaceId, NamespacePublicKey};
1111
///
1212
/// Used to cache [`ed25519_dalek::VerifyingKey`].
1313
///
14-
/// This trait is implemented for the unit type [`()`], where no caching is used.
14+
/// This trait is implemented for the unit type `()`, where no caching is used.
1515
pub trait PublicKeyStore {
1616
/// Convert a byte array into a [`VerifyingKey`].
1717
///

src/ticket.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Tickets for [`iroh-docs`] documents.
1+
//! Tickets for `iroh-docs` documents.
22
33
use iroh::NodeAddr;
44
use iroh_base::ticket;

0 commit comments

Comments
 (0)