diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-18 11:38:34 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-26 23:32:43 -0800 |
commit | 802bafc92160205a2a3068b7b780a6a5eeb331d9 (patch) | |
tree | dc471a11f7e7f5bdf5b94ba066ece79adf0a59f3 /rust/src/lib.rs | |
parent | 6a8d793eef101e72dbe44f94c30cbf5e6be75aeb (diff) | |
download | fatcat-802bafc92160205a2a3068b7b780a6a5eeb331d9.tar.gz fatcat-802bafc92160205a2a3068b7b780a6a5eeb331d9.zip |
start skeleton of auth internal bits
Diffstat (limited to 'rust/src/lib.rs')
-rw-r--r-- | rust/src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 0bed3471..2a6c7203 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -11,7 +11,7 @@ extern crate futures; extern crate uuid; #[macro_use] extern crate hyper; -//extern crate swagger; +extern crate swagger; #[macro_use] extern crate error_chain; extern crate iron; @@ -24,6 +24,7 @@ extern crate regex; #[macro_use] extern crate lazy_static; extern crate sha1; +extern crate macaroon; pub mod api_entity_crud; pub mod api_helpers; @@ -31,6 +32,7 @@ pub mod api_server; pub mod api_wrappers; pub mod database_models; pub mod database_schema; +pub mod auth; pub mod errors { // Create the Error, ErrorKind, ResultExt, and Result types |