From 739e1efe1b2dc2347f015eafd6529a5907e95587 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 01:25:24 +0000 Subject: [PATCH] deps(rust-proxy): Update uniffi requirement Updates the requirements on [uniffi](https://github.com/mozilla/uniffi-rs) to permit the latest version. Updates `uniffi` to 0.32.0 - [Changelog](https://github.com/mozilla/uniffi-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/mozilla/uniffi-rs/compare/v0.31.0...v0.32.0) --- updated-dependencies: - dependency-name: uniffi dependency-version: 0.32.0 dependency-type: direct:production dependency-group: rust-proxy ... Signed-off-by: dependabot[bot] --- rust/letterbox-proxy/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/letterbox-proxy/Cargo.toml b/rust/letterbox-proxy/Cargo.toml index ab4d0d2..3f48b98 100644 --- a/rust/letterbox-proxy/Cargo.toml +++ b/rust/letterbox-proxy/Cargo.toml @@ -63,7 +63,7 @@ log = "0.4.29" env_logger = "0.11.8" # UniFFI for Kotlin bindings -uniffi = { version = "0.31.0", features = ["cli"] } +uniffi = { version = "0.32.0", features = ["cli"] } # Caching lru = "0.18.0" @@ -72,7 +72,7 @@ lru = "0.18.0" chrono = { version = "0.4.43", default-features = false, features = ["std", "clock"] } [build-dependencies] -uniffi = { version = "0.31.0", features = ["build"] } +uniffi = { version = "0.32.0", features = ["build"] } [dev-dependencies] tokio-test = "0.4.5"