1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#![allow(warnings)]
#![feature(option_flattening)]
#![feature(linked_list_extras)]
#![feature(specialization)]
#![recursion_limit = "512"]
#[macro_use]
extern crate failure;

#[macro_use]
pub mod exported_macro;
pub mod app;
pub mod context;
pub mod entity;
pub mod error;
pub mod event;
pub mod p4rt;
pub mod proto;
pub mod representation;
pub mod service;
pub mod util;