Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/store/pubkeys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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`].
///
Expand Down
2 changes: 1 addition & 1 deletion src/ticket.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Tickets for [`iroh-docs`] documents.
//! Tickets for `iroh-docs` documents.

use iroh::NodeAddr;
use iroh_base::ticket;
Expand Down
Loading