1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
#![deny(clippy::all, clippy::perf, clippy::correctness)] #![allow(clippy::unreadable_literal)] #[macro_use] extern crate failure; #[macro_use] extern crate lazy_static; #[cfg(test)] #[macro_use] extern crate proptest; #[macro_use] extern crate clap; #[macro_use] extern crate slog; #[macro_use] extern crate serde; #[cfg(test)] #[macro_use] extern crate pretty_assertions; #[macro_use] pub mod test_helper; pub mod example_helper; pub mod batchpost; pub mod beacon_post; pub mod challenge_derivation; pub mod circuit; pub mod compound_proof; pub mod crypto; pub mod drgporep; pub mod drgraph; pub mod error; pub mod fr32; pub mod hasher; pub mod layered_drgporep; pub mod merkle; pub mod merklepor; pub mod parameter_cache; pub mod partitions; pub mod piece_inclusion_proof; pub mod porc; pub mod porep; pub mod proof; pub mod settings; pub mod util; pub mod vdf; pub mod vdf_post; pub mod vdf_sloth; pub mod zigzag_drgporep; pub mod zigzag_graph; pub mod vde; use logging_toolkit::make_logger; use slog::Logger; lazy_static! { pub static ref SP_LOG: Logger = make_logger("storage-proofs"); }