1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(test)]
#[macro_use(lazy_static)]
extern crate lazy_static;

pub mod context;
#[cfg(test)]
pub mod jcli;
#[cfg(test)]
#[allow(clippy::all)]
pub mod jormungandr;
#[cfg(all(test, feature = "network"))]
#[allow(clippy::all)]
pub mod networking;
#[cfg(all(test, feature = "non-functional"))]
#[allow(clippy::all)]
pub mod non_functional;
#[allow(clippy::all)]
pub mod startup;