mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
6cd9296bfc
Print all MBTiles metadata fields in a free style YAML, including some auto-detected tile info
48 lines
1.4 KiB
TOML
48 lines
1.4 KiB
TOML
[package]
|
|
name = "martin-mbtiles"
|
|
version = "0.4.0"
|
|
authors = ["Yuri Astrakhan <YuriAstrakhan@gmail.com>", "MapLibre contributors"]
|
|
description = "A simple low-level MbTiles access and processing library, with some tile format detection and other relevant heuristics."
|
|
keywords = ["mbtiles", "maps", "tiles", "mvt", "tilejson"]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[features]
|
|
# TODO: Disable "cli" feature in default builds
|
|
default = ["cli", "native-tls"]
|
|
cli = ["dep:anyhow", "dep:clap", "dep:tokio"]
|
|
# One of the following two must be used
|
|
native-tls = ["sqlx/runtime-tokio-native-tls"]
|
|
rustls = ["sqlx/runtime-tokio-rustls"]
|
|
|
|
[dependencies]
|
|
futures.workspace = true
|
|
log.workspace = true
|
|
martin-tile-utils.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sqlx.workspace = true
|
|
thiserror.workspace = true
|
|
tilejson.workspace = true
|
|
|
|
# Bin dependencies
|
|
anyhow = { workspace = true, optional = true }
|
|
clap = { workspace = true, optional = true }
|
|
serde_yaml.workspace = true
|
|
sqlite-hashes.workspace = true
|
|
tokio = { workspace = true, features = ["rt-multi-thread"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
# For testing, might as well use the same async framework as the Martin itself
|
|
actix-rt.workspace = true
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "mbtiles"
|
|
path = "src/bin/main.rs"
|
|
required-features = ["cli"]
|