aboutsummaryrefslogtreecommitdiffstats
path: root/rust/src/lib.rs
blob: b766133448c53323de54bf58238fbfd061ee60dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![allow(proc_macro_derive_resolution_fallback)]
#![recursion_limit = "128"]

#[macro_use]
extern crate diesel;
#[macro_use]
extern crate log;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate failure;

pub mod auth;
pub mod database_models;
pub mod database_schema; // only public for tests
pub mod editing;
pub mod editing_crud;
mod endpoint_handlers;
mod endpoints;
pub mod entity_crud;
pub mod errors;
pub mod identifiers;
pub mod server;