martin 1.16.1

Blazing fast and lightweight tile server with PostGIS, MBTiles, and PMTiles support
Documentation
mod error;
pub use error::{ArgsError, ArgsResult};

mod connections;
pub use connections::State;

#[cfg(any(feature = "postgres", feature = "unstable-duckdb"))]
mod bounds;
#[cfg(any(feature = "postgres", feature = "unstable-duckdb"))]
pub use bounds::{BoundsCalcType, DEFAULT_BOUNDS_TIMEOUT};

#[cfg(feature = "postgres")]
mod postgres;
#[cfg(feature = "postgres")]
pub use postgres::PostgresArgs;

mod root;
pub use root::*;

mod srv;
pub use srv::*;