From 6a105ea154bea337114f6d1f2b53c52f4226e535 Mon Sep 17 00:00:00 2001 From: Avril Date: Sat, 6 Feb 2021 18:20:33 +0000 Subject: [PATCH] move cache to own mod --- src/data/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/mod.rs b/src/data/mod.rs index 82c0fb4..8585b43 100644 --- a/src/data/mod.rs +++ b/src/data/mod.rs @@ -12,7 +12,7 @@ pub const CACHE_GATE_TIMEOUT: Duration = duration!(100 ms); /// How long should the insertion stream be forced to wait before accepting new blocks to insert. pub const CACHE_GATED_LAG: Duration = duration!(10 ms); -mod cache; pub use cache::*; +mod cache; pub use cache::Cache; /// A raw file or directory inode number ///