Skip to content

Commit 98a0af7

Browse files
authored
feat: export mods (#37)
* feat: export mods Signed-off-by: MrCroxx <[email protected]> * make cargo sort happy Signed-off-by: MrCroxx <[email protected]> --------- Signed-off-by: MrCroxx <[email protected]>
1 parent ad3f125 commit 98a0af7

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

Cargo.lock

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

foyer/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ bytes = "1"
1313
cmsketch = "0.1"
1414
crossbeam = "0.8"
1515
foyer-common = { path = "../foyer-common" }
16+
foyer-intrusive = { path = "../foyer-intrusive" }
17+
foyer-storage = { path = "../foyer-storage" }
1618
futures = "0.3"
1719
itertools = "0.10.5"
1820
libc = "0.2"

foyer/src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,7 @@ impl Weight for Vec<u8> {
2626
self.len()
2727
}
2828
}
29+
30+
pub use foyer_common as common;
31+
pub use foyer_intrusive as intrusive;
32+
pub use foyer_storage as storage;

0 commit comments

Comments
 (0)