Skip to content

Commit eb77992

Browse files
authored
Merge pull request #20 from rustbase/bugfix/public-modules
fix: adding modules to public
2 parents 4be3488 + 28ec30b commit eb77992

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
mod bloom;
1+
pub mod bloom;
22
mod dustdata;
3-
mod storage;
3+
pub mod storage;
44

55
pub use self::{
66
dustdata::DustData, dustdata::DustDataConfig, dustdata::Error, dustdata::ErrorCode,

src/storage/lsm/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ use crate::dustdata::{Error, ErrorCode, Result};
99

1010
use self::snapshots::Snapshot;
1111

12-
mod filter;
13-
mod index;
12+
pub mod filter;
13+
pub mod index;
1414
pub mod snapshots;
15-
mod sstable;
15+
pub mod sstable;
1616
mod writer;
1717

1818
#[derive(Clone, Debug)]

src/storage/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pub mod lsm;
1+
pub mod lsm;

0 commit comments

Comments
 (0)