kanidm/kanidmd/src/lib/lib.rs

43 lines
602 B
Rust
Raw Normal View History

#![deny(warnings)]
#![warn(unused_extern_crates)]
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate lazy_static;
// This has to be before 'be' so the import order works
#[macro_use]
mod macros;
mod crypto;
mod utils;
#[macro_use]
mod async_log;
#[macro_use]
pub mod audit;
pub mod be;
pub mod constants;
pub mod credential;
mod entry;
mod event;
mod filter;
mod interval;
pub(crate) mod ldap;
mod modify;
mod value;
#[macro_use]
mod plugins;
mod access;
mod actors;
mod idm;
mod repl;
mod schema;
mod server;
2020-05-07 06:08:06 +02:00
mod status;
pub mod config;
pub mod core;