From 43b6dbec3e634859968ce134d2c40973d56b45e3 Mon Sep 17 00:00:00 2001 From: Julian Ganz Date: Sat, 16 Jan 2016 15:03:24 +0100 Subject: [PATCH] Pull in the modules in lib.rs --- libimagstore/src/lib.rs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/libimagstore/src/lib.rs b/libimagstore/src/lib.rs index a93251b6..4badf8bc 100644 --- a/libimagstore/src/lib.rs +++ b/libimagstore/src/lib.rs @@ -1,3 +1,9 @@ -#[test] -fn it_works() { -} +extern crate toml; + +pub mod content; +pub mod entry; +pub mod error; +pub mod header; +pub mod single_use_lock; +pub mod store; +