martin/martin-mbtiles/Cargo.toml
Yuri Astrakhan 9cd71476db
Prepare for sub-crate publish, detection bug fix (#615)
* tile format detection would crash on a rare edge case
* add some formatting and info about utils and mbtiles crates
2023-03-25 18:37:42 +00:00

27 lines
900 B
TOML

[package]
name = "martin-mbtiles"
version = "0.1.0"
edition = "2021"
license = "MIT/Apache-2.0"
repository = "https://github.com/maplibre/martin"
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", "tileserver", "tilejson"]
exclude = [
# Exclude the fixtures directory from the package - it's only used for tests.
"/fixtures",
]
[dependencies]
futures = "0.3"
log = "0.4"
martin-tile-utils = { path = "../martin-tile-utils" }
serde_json = "1"
sqlx = { version = "0.6", features = ["offline", "sqlite", "runtime-actix-native-tls"] }
thiserror = "1"
tilejson = "0.3"
[dev-dependencies]
# For testing, might as well use the same async framework as the Martin itself
actix-rt = "2"