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
26
27
28
29
30
31
32
33
34
35
#![deny(
missing_crate_level_docs,
missing_doc_code_examples,
missing_docs,
rust_2018_idioms,
unused_imports,
dead_code
)]
pub mod client;
pub use client::{ client::Client, SyncClientTrait };
#[cfg(all(feature = "async-radius"))]
pub use client::AsyncClientTrait;
pub mod server;
pub use server::{ server::Server, SyncServerTrait };
#[cfg(all(feature = "async-radius"))]
pub use server::AsyncServerTrait;
pub mod protocol;
pub mod tools;
pub mod features {
#![cfg_attr(feature = "async-radius", doc = "## Async RADIUS Server/Client Enabled")]
#![cfg_attr(not(feature = "async-radius"), doc = "## Async RADIUS Server/Client Disabled")]
}