aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2017-10-18 23:27:46 -0700
committerBryan Newbold <bnewbold@robocracy.org>2017-10-18 23:28:15 -0700
commit30b0bdb93389f98cb355f8128032a37772437ae5 (patch)
tree8fbda190e7dffb356c8703674d52af9922ae56b7 /src/lib.rs
parent1e29f3c3c4f3fd50f939758a6f7ae42b600045ed (diff)
downloadgeniza-30b0bdb93389f98cb355f8128032a37772437ae5.tar.gz
geniza-30b0bdb93389f98cb355f8128032a37772437ae5.zip
protobuf messages
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 5a7ca15..0be23a1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -16,6 +16,7 @@ extern crate error_chain;
extern crate integer_encoding;
extern crate crypto;
extern crate rand;
+extern crate protobuf;
#[cfg(test)]
extern crate tempdir;
@@ -35,5 +36,7 @@ pub use errors::*;
// Organize code internally (files, modules), but pull it all into a flat namespace to export.
mod sleep;
mod register;
+pub mod network_proto;
+pub mod drive_proto;
pub use sleep::*;
pub use register::*;