mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 04:41:46 +03:00
18770664e1
This moves all dependency version management to one location
28 lines
912 B
TOML
28 lines
912 B
TOML
[package]
|
|
name = "martin-mbtiles"
|
|
version = "0.1.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"]
|
|
exclude = [
|
|
# Exclude the fixtures directory from the package - it's only used for tests.
|
|
"/fixtures",
|
|
]
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
futures.workspace = true
|
|
log.workspace = true
|
|
martin-tile-utils = { path = "../martin-tile-utils", version = "0.1.0" }
|
|
serde_json.workspace = true
|
|
sqlx.workspace = true
|
|
thiserror.workspace = true
|
|
tilejson.workspace = true
|
|
|
|
[dev-dependencies]
|
|
# For testing, might as well use the same async framework as the Martin itself
|
|
actix-rt.workspace = true
|