Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #3 from filecoin-project/bugs/export-api-types
Browse files Browse the repository at this point in the history
bug(export types consumed/produced by API)
  • Loading branch information
laser authored Jun 18, 2019
2 parents 024f6cb + 1a98d6c commit f435451
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions sector-builder/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
#![deny(clippy::all, clippy::perf, clippy::correctness)]

#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate failure;
#[macro_use]
extern crate lazy_static;

pub use filecoin_proofs::types::*;

pub use crate::builder::*;
pub use crate::constants::*;
pub use crate::error::*;
pub use crate::metadata::*;
pub use crate::store::*;

mod builder;
mod constants;
Expand All @@ -19,9 +27,3 @@ mod singletons;
mod state;
mod store;
mod util;

pub use crate::builder::*;
pub use crate::constants::*;
pub use crate::error::*;
pub use crate::metadata::*;
pub use crate::store::*;

0 comments on commit f435451

Please sign in to comment.