Skip to content

Commit 9a44965

Browse files
dependabot[bot]autofix-ci[bot]CommanderStorm
authored
build(deps): bump fast-mvt from 0.3.2 to 0.4.0 in /rust in the all-cargo-version-updates group (#1452)
Bumps the all-cargo-version-updates group in /rust with 1 update: [fast-mvt](https://github.com/nyurik/fast-mvt). Updates `fast-mvt` from 0.3.2 to 0.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/nyurik/fast-mvt/releases">fast-mvt's releases</a>.</em></p> <blockquote> <h2>v0.4.0</h2> <h3>Other</h3> <ul> <li>[<strong>breaking</strong>] use ref geometry, add <code>encode_ref</code> support, faster indexer (<a href="https://redirect.github.com/nyurik/fast-mvt/pull/16">#16</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/nyurik/fast-mvt/blob/main/CHANGELOG.md">fast-mvt's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/nyurik/fast-mvt/compare/v0.3.2...v0.4.0">0.4.0</a> - 2026-06-18</h2> <h3>Other</h3> <ul> <li>[<strong>breaking</strong>] use ref geometry, add <code>encode_ref</code> support, faster indexer (<a href="https://redirect.github.com/nyurik/fast-mvt/pull/16">#16</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nyurik/fast-mvt/commit/aa3fbf916f60ddf2099b0d7434b228bd81180d7e"><code>aa3fbf9</code></a> chore: release v0.4.0 (<a href="https://redirect.github.com/nyurik/fast-mvt/issues/17">#17</a>)</li> <li><a href="https://github.com/nyurik/fast-mvt/commit/e72d6285eab21ef88c47dc19db927f196fe5fe13"><code>e72d628</code></a> chore!: use ref geometry, add <code>encode_ref</code> support, faster indexer (<a href="https://redirect.github.com/nyurik/fast-mvt/issues/16">#16</a>)</li> <li><a href="https://github.com/nyurik/fast-mvt/commit/b96bc758c08de73a31f1076551289fb19cf4a61c"><code>b96bc75</code></a> chore: coverage cleanup (<a href="https://redirect.github.com/nyurik/fast-mvt/issues/15">#15</a>)</li> <li><a href="https://github.com/nyurik/fast-mvt/commit/6d3eb968903d6cdf1ccdf3699cee381f397bc258"><code>6d3eb96</code></a> chore: update CI runner names</li> <li>See full diff in <a href="https://github.com/nyurik/fast-mvt/compare/v0.3.2...v0.4.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=fast-mvt&package-manager=cargo&previous-version=0.3.2&new-version=0.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Frank Elsinga <frank.elsinga@tum.de>
1 parent 06cad1f commit 9a44965

6 files changed

Lines changed: 13 additions & 10 deletions

File tree

rust/Cargo.lock

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ derive-debug = "0.1.2"
3131
diplomat = "0.15.0"
3232
diplomat-runtime = "0.15.1"
3333
enum_dispatch = "0.3"
34-
fast-mvt = "0.3.0"
34+
fast-mvt = "0.4.0"
3535
fastpfor = { version = "0.9", features = ["rust"] }
3636
flate2 = "1"
3737
fsst-rs = "0.5"

rust/mlt-core/src/convert/mvt/encode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub fn tile_layers_to_mvt(layers: Vec<TileLayer>) -> MltResult<Vec<u8>> {
1616
let mut mvt_layer = tile.layer_with_capacity(layer.name, layer.features.len())?;
1717
mvt_layer.extent(layer.extent.into());
1818
for feat in layer.features {
19-
let mut feature = mvt_layer.feature(feat.geometry)?;
19+
let mut feature = mvt_layer.feature(&feat.geometry)?;
2020
feature.id(feat.id);
2121
for (col_idx, prop) in feat.properties.into_iter().enumerate() {
2222
if let Some(name) = layer.property_names.get(col_idx)

rust/mlt-py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "maplibre-tiles"
7-
version = "0.1.20"
7+
version = "0.1.21"
88
description = "Python bindings for MapLibre Tile (MLT) format"
99
requires-python = ">=3.10"
1010
license = { text = "MIT OR Apache-2.0" }

rust/mlt-wasm/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/mlt-wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@maplibre/mlt-wasm",
3-
"version": "0.1.13",
3+
"version": "0.1.14",
44
"description": "WebAssembly-backed MapLibre Tile (MLT) decoder",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)