Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
survived committed Jun 21, 2024
1 parent 687d7cf commit 1b62e83
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions givre/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ curve25519-dalek = { version = "4", default-features = false, optional = true }

[dev-dependencies]
rand_core = { version = "0.6", default-features = false, features = ["getrandom"] }
futures = "0.3"

[features]
default = ["std"]
Expand Down
6 changes: 6 additions & 0 deletions givre/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,12 @@ pub use round_based;
pub mod ciphersuite;
pub mod signing;

#[cfg(test)]
mod _unused_deps {
// `futures` causes false-positive because it's only used in the docs examples
use futures as _;
}

/// Key share
///
/// This module re-exports type definitions from [`key_share`](::key_share) crate.
Expand Down

0 comments on commit 1b62e83

Please sign in to comment.