#![warn(
rust_2018_idioms,
unreachable_pub,
// missing_debug_implementations,
// missing_docs,
)]
#![allow(
type_alias_bounds,
clippy::type_complexity,
clippy::borrow_interior_mutable_const,
clippy::needless_doctest_main,
clippy::too_many_arguments,
clippy::new_without_default
)]
#[macro_use]
extern crate log;
#[macro_use]
extern crate derive_more;
pub use ntex_rt_macros::{main, test};
pub mod channel;
pub mod connect;
pub mod framed;
pub mod http;
pub mod server;
pub mod task;
pub mod testing;
pub mod util;
pub mod web;
pub mod ws;
pub use self::service::*;
pub mod codec {
pub use ntex_codec::*;
}
pub mod router {
pub use ntex_router::*;
}
pub mod rt {
pub use ntex_rt::*;
}
pub mod service {
pub use ntex_service::*;
}
type HashMap<K, V> = std::collections::HashMap<K, V, ahash::RandomState>;
type HashSet<V> = std::collections::HashSet<V, ahash::RandomState>;