Skip to content

Commit

Permalink
Fix cargo doc GitHub Actions job (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
gferon authored Oct 21, 2024
1 parent b4612c1 commit 68c088e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- run: cargo doc --all-features --no-deps -p presage -p libsignal-service -p libsignal-service-hyper -p libsignal-protocol -p zkgroup
- run: cargo doc --no-deps -p presage -p libsignal-service -p libsignal-protocol -p zkgroup
- uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions presage/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ pub struct StickerPack {
pub manifest: StickerPackManifest,
}

/// equivalent to [Pack](crate::prelude::proto::Pack)
/// equivalent to [Pack](crate::proto::Pack)
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StickerPackManifest {
pub title: String,
Expand All @@ -509,7 +509,7 @@ impl From<libsignal_service::proto::Pack> for StickerPackManifest {
}
}

/// equivalent to [Sticker](crate::prelude::proto::pack::Sticker)
/// equivalent to [Sticker](crate::proto::pack::Sticker)
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Sticker {
pub id: u32,
Expand Down

0 comments on commit 68c088e

Please sign in to comment.