martin 1.12.0

Blazing fast and lightweight tile server with PostGIS, MBTiles, and PMTiles support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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::*;