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
#[cfg(test)]
#[macro_use]
extern crate assert_approx_eq;

#[macro_use]
extern crate cfg_if;

#[macro_use]
extern crate lazy_static;

extern crate digit_group;
extern crate dtoa;
extern crate itoa;
extern crate ref_slice;
extern crate regex;

#[cfg(feature = "csv")]
extern crate csv;

#[cfg(feature = "xml")]
extern crate quick_xml;

#[cfg(feature = "http")]
extern crate reqwest;

#[cfg(feature = "http")]
extern crate url;

#[cfg(test)]
extern crate bencher;

// Macros and utilities (required by other modules).
#[macro_use]
pub(crate) mod util;

// Testing modules
#[cfg(test)]
#[macro_use]
pub(crate) mod test;

// Public modules
pub mod bio;
pub mod db;
pub mod io;
pub mod traits;