diff --git a/Cargo.lock b/Cargo.lock index f88912bcb..e75eebaa0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2392,7 +2392,7 @@ dependencies = [ [[package]] name = "martin-tile-utils" -version = "0.5.0" +version = "0.5.1" dependencies = [ "approx", "brotli 6.0.0", @@ -2402,7 +2402,7 @@ dependencies = [ [[package]] name = "mbtiles" -version = "0.11.0" +version = "0.11.1" dependencies = [ "actix-rt", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 6b6e809a9..f57a13121 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,8 +51,8 @@ json-patch = "2.0" lambda-web = { version = "0.2.1", features = ["actix4"] } libsqlite3-sys = { version = ">=0.27", features = ["bundled"] } log = "0.4" -martin-tile-utils = { path = "./martin-tile-utils", version = "0.5.0" } -mbtiles = { path = "./mbtiles", version = "0.11.0" } +martin-tile-utils = { path = "./martin-tile-utils", version = "0.5.1" } +mbtiles = { path = "./mbtiles", version = "0.11.1" } md5 = "0.7.0" moka = { version = "0.12", features = ["future"] } num_cpus = "1" @@ -103,3 +103,8 @@ similar.opt-level = 3 #tilejson = { path = "../tilejson" } #pmtiles = { git = "https://github.com/nyurik/pmtiles-rs", branch = "override" } #tilejson = { git = "https://github.com/nyurik/tilejson", branch = "btreemap" } + +[profile.release] +# Make release binaries a bit smaller +lto = true +codegen-units = 1 diff --git a/martin-tile-utils/Cargo.toml b/martin-tile-utils/Cargo.toml index 9ee6e5c24..cf416959e 100644 --- a/martin-tile-utils/Cargo.toml +++ b/martin-tile-utils/Cargo.toml @@ -2,7 +2,7 @@ lints.workspace = true [package] name = "martin-tile-utils" -version = "0.5.0" +version = "0.5.1" 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"] diff --git a/mbtiles/Cargo.toml b/mbtiles/Cargo.toml index c0cee0bda..3ce01c536 100644 --- a/mbtiles/Cargo.toml +++ b/mbtiles/Cargo.toml @@ -2,7 +2,7 @@ lints.workspace = true [package] name = "mbtiles" -version = "0.11.0" +version = "0.11.1" 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"]