From b274ffaf774382d269fe6489f50207ef5cec0a8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Jun 2026 12:11:07 +0000 Subject: [PATCH] Bump serde_with from 3.18.0 to 3.20.0 in /common Bumps [serde_with](https://github.com/jonasbb/serde_with) from 3.18.0 to 3.20.0. - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.18.0...v3.20.0) --- updated-dependencies: - dependency-name: serde_with dependency-version: 3.20.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- common/Cargo.lock | 33 +++++++++++++++++++++++++++++---- common/ferrostar/Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/common/Cargo.lock b/common/Cargo.lock index afbed3838..a369aca70 100644 --- a/common/Cargo.lock +++ b/common/Cargo.lock @@ -163,6 +163,15 @@ dependencies = [ "generic-array", ] +[[package]] +name = "bs58" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +dependencies = [ + "tinyvec", +] + [[package]] name = "bumpalo" version = "3.19.0" @@ -1484,11 +1493,12 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.18.0" +version = "3.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd5414fad8e6907dbdd5bc441a50ae8d6e26151a03b1de04d89a5576de61d01f" +checksum = "e72c1c2cb7b223fafb600a619537a871c2818583d619401b785e7c0b746ccde2" dependencies = [ "base64", + "bs58", "chrono", "hex", "indexmap 1.9.3", @@ -1503,9 +1513,9 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.18.0" +version = "3.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3db8978e608f1fe7357e211969fd9abdcae80bac1ba7a3369bb7eb6b404eb65" +checksum = "b90c488738ecb4fb0262f41f43bc40efc5868d9fb744319ddf5f5317f417bfac" dependencies = [ "darling", "proc-macro2", @@ -1680,6 +1690,21 @@ dependencies = [ "time-core", ] +[[package]] +name = "tinyvec" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + [[package]] name = "toml" version = "0.9.8" diff --git a/common/ferrostar/Cargo.toml b/common/ferrostar/Cargo.toml index 5f961b4f3..56da2f10a 100644 --- a/common/ferrostar/Cargo.toml +++ b/common/ferrostar/Cargo.toml @@ -36,7 +36,7 @@ polyline = "0.11.0" rand = "0.10.1" serde = { version = "1.0.219", features = ["derive"] } serde_json = { version = "1.0.150", default-features = false } -serde_with = "3.18.0" +serde_with = "3.20.0" serde-wasm-bindgen = { version = "0.6.5", optional = true } thiserror = "2.0.18" uniffi = { workspace = true, optional = true }