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
36
37
38
39
40
41
42
43
44
45
#![recursion_limit = "128"]
#![allow(clippy::absurd_extreme_comparisons)]
#![allow(clippy::bool_comparison)]
#![allow(clippy::int_plus_one)]
#![allow(clippy::cast_lossless)]
#![allow(clippy::useless_let_if_seq)]

extern crate byteorder;
#[macro_use]
extern crate chomp;
#[macro_use]
extern crate failure;
#[macro_use]
extern crate failure_derive;
extern crate libc;
extern crate rand;
#[macro_use]
extern crate xfailure;
extern crate hex;

pub mod c_abi;
pub mod compress;
pub mod constants;
pub mod dns_sector;
pub mod edns_iterator;
pub mod errors;
pub mod parsed_packet;
pub mod question_iterator;
pub mod renamer;
pub mod response_iterator;
pub mod rr_iterator;
pub mod synth;

pub use crate::c_abi::*;
pub use crate::compress::*;
pub use crate::constants::*;
pub use crate::dns_sector::*;
pub use crate::edns_iterator::*;
pub use crate::errors::*;
pub use crate::parsed_packet::*;
pub use crate::question_iterator::*;
pub use crate::renamer::*;
pub use crate::response_iterator::*;
pub use crate::rr_iterator::*;
pub use crate::synth::*;