aboutsummaryrefslogtreecommitdiffstats
path: root/rust/src/lib.rs
blob: d089adf8f2dc49d46ada89512fc844c1a7c84681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![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;
#[macro_use]
extern crate serde_derive;

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;