From 10b5144ec4dab87a4ac6a7af22777aaabd4179a6 Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Sat, 22 Mar 2025 00:45:54 -0400 Subject: [PATCH] Do not publish Cargo.lock to creates.io --- martin-tile-utils/Cargo.toml | 5 +---- martin/Cargo.toml | 1 + mbtiles/Cargo.toml | 1 + 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/martin-tile-utils/Cargo.toml b/martin-tile-utils/Cargo.toml index 59ba51264..c599247dc 100644 --- a/martin-tile-utils/Cargo.toml +++ b/martin-tile-utils/Cargo.toml @@ -5,10 +5,7 @@ authors = ["Yuri Astrakhan ", "MapLibre contributors"] description = "Utilities 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", -] +exclude = ["/fixtures", "Cargo.lock"] edition.workspace = true license.workspace = true repository.workspace = true diff --git a/martin/Cargo.toml b/martin/Cargo.toml index 6dc5a5dd7..8ec198f51 100644 --- a/martin/Cargo.toml +++ b/martin/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Stepan Kuzmin ", "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"] +exclude = ["Cargo.lock"] edition.workspace = true license.workspace = true repository.workspace = true