martin-core 0.5.0

Basic building blocks of MapLibre's Martin tile server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Supporting Resource management for the Martin map tile server.
//!
//! Provides:
//! - [x] fonts
//! - [x] sprites
//! - [x] styles

#[cfg(feature = "fonts")]
pub mod fonts;

#[cfg(feature = "sprites")]
pub mod sprites;

#[cfg(feature = "styles")]
pub mod styles;