1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// TODO: delete this!!!
// TODO: delete this!!!
// TODO: delete this!!!
#![allow(dead_code)]

pub use crate::header::{Compression, Header, TileType};

mod directory;
pub mod error;
mod header;

#[cfg(feature = "http-async")]
pub mod http;

#[cfg(any(feature = "mmap-async-tokio", test))]
pub mod mmap;

#[cfg(any(feature = "tokio", test))]
pub mod async_reader;
pub mod tile;