diff options
author | Trinity Pointard <trinity.pointard@gmail.com> | 2021-03-26 19:41:46 +0100 |
---|---|---|
committer | Trinity Pointard <trinity.pointard@gmail.com> | 2021-04-06 05:26:48 +0200 |
commit | 30bec0758b943351d946234329b9a46bd83749a1 (patch) | |
tree | 120910caa43e400c0431463f47ed3fc114af77ea /src/table/lib.rs | |
parent | b476b702c8a1e4027a1abc16d54afbd61fdcf984 (diff) | |
download | garage-30bec0758b943351d946234329b9a46bd83749a1.tar.gz garage-30bec0758b943351d946234329b9a46bd83749a1.zip |
attempt at documenting table crate
Diffstat (limited to 'src/table/lib.rs')
-rw-r--r-- | src/table/lib.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/table/lib.rs b/src/table/lib.rs index 3b73163b..8dcb115d 100644 --- a/src/table/lib.rs +++ b/src/table/lib.rs @@ -1,3 +1,4 @@ +#![warn(missing_docs)] #![recursion_limit = "1024"] #[macro_use] @@ -8,10 +9,10 @@ pub mod schema; pub mod util; pub mod data; -pub mod gc; -pub mod merkle; +mod gc; +mod merkle; pub mod replication; -pub mod sync; +mod sync; pub mod table; pub use schema::*; |