Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benr-ml committed Oct 11, 2023
1 parent b38b03a commit 21d7ca9
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions fastcrypto-tbls/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,20 @@
//! A crate that implements threshold BLS (tBLS) and distributed key generation (DKG)
//! protocols.
// This is a hack for not repeating the conditional compilation for each module.
#[path = ""]
mod tbls_modules {
pub mod dkg;
pub mod dl_verification;
pub mod ecies;
pub mod mocked_dkg;
pub mod nidkg;
pub mod nizk;
pub mod nodes;
pub mod polynomial;
pub mod random_oracle;
pub mod tbls;
pub mod types;
}

pub use tbls_modules::*;
pub mod dkg;
pub mod dl_verification;
pub mod ecies;
pub mod nizk;
pub mod nodes;
pub mod polynomial;
pub mod random_oracle;
pub mod tbls;
pub mod types;

#[cfg(any(test, feature = "experimental"))]
pub mod mocked_dkg;
#[cfg(any(test, feature = "experimental"))]
pub mod nidkg;

#[cfg(test)]
#[path = "tests/tbls_tests.rs"]
Expand Down

0 comments on commit 21d7ca9

Please sign in to comment.