1
2
3
4
5
6
7
8
9
10
11
12
#![deny(warnings)]
#![warn(
    missing_debug_implementations,
    rust_2018_idioms,
    unreachable_pub,
    non_snake_case,
    non_upper_case_globals
)]

pub mod dns_message;
pub mod dns_message_parser;
pub mod ede;