martin/martin-mbtiles/Cargo.toml
Yuri Astrakhan 18770664e1
Consolidate all crate dependencies (#694)
This moves all dependency version management to one location
2023-06-01 09:05:06 -04:00

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