From 397a92772a86d89bed7bae4950e1a93f3087e5be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2026 23:38:09 +0000 Subject: [PATCH] chore(deps): bump piet from 0.6.2 to 0.8.0 Bumps [piet](https://github.com/linebender/piet) from 0.6.2 to 0.8.0. - [Release notes](https://github.com/linebender/piet/releases) - [Commits](https://github.com/linebender/piet/compare/v0.6.2...v0.8.0) --- updated-dependencies: - dependency-name: piet dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 40 +++++++++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 36 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9869e200..7b057f90a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2757,6 +2757,15 @@ version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a0474425d51df81997e2f90a21591180b38eccf27292d755f3e30750225c175b" +[[package]] +name = "euclid" +version = "0.22.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06" +dependencies = [ + "num-traits 0.2.19", +] + [[package]] name = "eui48" version = "1.1.0" @@ -4613,6 +4622,17 @@ dependencies = [ "arrayvec", ] +[[package]] +name = "kurbo" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62" +dependencies = [ + "arrayvec", + "euclid", + "smallvec", +] + [[package]] name = "lazy_static" version = "1.5.0" @@ -4699,7 +4719,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d" dependencies = [ "cfg-if 1.0.4", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -5479,7 +5499,7 @@ dependencies = [ "os-version", "parity-tokio-ipc", "percent-encoding", - "piet", + "piet 0.8.0", "piet-coregraphics", "portable-pty", "qrcode-generator", @@ -5564,7 +5584,7 @@ version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] @@ -6506,7 +6526,17 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e381186490a3e2017a506d62b759ea8eaf4be14666b13ed53973e8ae193451b1" dependencies = [ - "kurbo", + "kurbo 0.9.5", + "unic-bidi", +] + +[[package]] +name = "piet" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31867aac026f5706ca679ee13e0089fe85be00646ff1de73dd5ca6a15ddb48e1" +dependencies = [ + "kurbo 0.11.3", "unic-bidi", ] @@ -6522,7 +6552,7 @@ dependencies = [ "core-graphics 0.22.3", "core-text", "foreign-types 0.3.2", - "piet", + "piet 0.6.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 976fc21ff..6f07d48bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -160,7 +160,7 @@ include_dir = "0.7" fruitbasket = "0.10" objc_id = "0.1" # If we use piet "0.7" here, we must also update core-graphics to "0.24". -piet = "0.6" +piet = "0.8" piet-coregraphics = "0.6" foreign-types = "0.3"