mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 21:01:45 +03:00
280dbe162f
Mathematics should be consolidated in the utils crate. Eventually, I hope we will move it to [tile-grid](https://crates.io/crates/tile-grid) or [utiles](https://crates.io/crates/utiles) crates and consolidate our efforts there. Also, modify earth circumference by a few centimeters (to match various other implementations): from `.7` to `.685_578_5`. This modified a few unit tests.
23 lines
673 B
TOML
23 lines
673 B
TOML
lints.workspace = true
|
|
|
|
[package]
|
|
name = "martin-tile-utils"
|
|
version = "0.1.6"
|
|
authors = ["Yuri Astrakhan <YuriAstrakhan@gmail.com>", "MapLibre contributors"]
|
|
description = "Utilites to help with map tile processing, such as type and compression detection. Used by the MapLibre's Martin tile server."
|
|
keywords = ["maps", "tiles", "mvt", "tileserver"]
|
|
categories = ["science::geo", "parsing"]
|
|
exclude = [
|
|
# Exclude the fixtures directory from the package - it's only used for tests.
|
|
"/fixtures",
|
|
]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
|
|
[dev-dependencies]
|
|
approx.workspace = true
|