Export dependencies
This commit is contained in:
parent
c543dae46a
commit
bc393b6fd6
2 changed files with 14 additions and 0 deletions
12
src/lib.rs
12
src/lib.rs
|
|
@ -1,3 +1,15 @@
|
|||
pub mod auth;
|
||||
pub mod errors;
|
||||
pub mod guards;
|
||||
|
||||
// Export dependencies for services to use
|
||||
pub use base64;
|
||||
pub use chrono;
|
||||
pub use figment;
|
||||
pub use hmac;
|
||||
pub use jwt;
|
||||
pub use rand;
|
||||
pub use rocket;
|
||||
pub use serde;
|
||||
pub use sha2;
|
||||
pub use uuid;
|
||||
|
|
|
|||
Reference in a new issue