From bfbe52d0325251c6d59200dda8ff7a7ed123c6db Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Mon, 30 Oct 2023 18:52:21 -0400 Subject: [PATCH] Add crate categories --- Cargo.lock | 6 +++--- martin-tile-utils/Cargo.toml | 3 ++- martin/Cargo.toml | 3 ++- mbtiles/Cargo.toml | 3 ++- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a1be09bff..86ad530b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1730,7 +1730,7 @@ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "martin" -version = "0.10.0" +version = "0.10.1" dependencies = [ "actix-cors", "actix-http", @@ -1778,11 +1778,11 @@ dependencies = [ [[package]] name = "martin-tile-utils" -version = "0.1.3" +version = "0.1.4" [[package]] name = "mbtiles" -version = "0.7.1" +version = "0.7.2" dependencies = [ "actix-rt", "anyhow", diff --git a/martin-tile-utils/Cargo.toml b/martin-tile-utils/Cargo.toml index d4f713298..4d60a9d38 100644 --- a/martin-tile-utils/Cargo.toml +++ b/martin-tile-utils/Cargo.toml @@ -1,9 +1,10 @@ [package] name = "martin-tile-utils" -version = "0.1.3" +version = "0.1.4" authors = ["Yuri Astrakhan ", "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", diff --git a/martin/Cargo.toml b/martin/Cargo.toml index cd9cfb791..16998806a 100644 --- a/martin/Cargo.toml +++ b/martin/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "martin" # Once the release is published with the hash, update https://github.com/maplibre/homebrew-martin -version = "0.10.0" +version = "0.10.1" authors = ["Stepan Kuzmin ", "Yuri Astrakhan ", "MapLibre contributors"] description = "Blazing fast and lightweight tile server with PostGIS, MBTiles, and PMTiles support" keywords = ["maps", "tiles", "mbtiles", "pmtiles", "postgis"] +categories = ["science::geo", "web-programming::http-server"] exclude = [ # Tests include a lot of data and other test files that are not needed for the users of the library "/tests", diff --git a/mbtiles/Cargo.toml b/mbtiles/Cargo.toml index fc1051be1..c31ab35c6 100644 --- a/mbtiles/Cargo.toml +++ b/mbtiles/Cargo.toml @@ -1,9 +1,10 @@ [package] name = "mbtiles" -version = "0.7.1" +version = "0.7.2" authors = ["Yuri Astrakhan ", "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"] +categories = ["science::geo", "database"] edition.workspace = true license.workspace = true repository.workspace = true