From 2e2cb1601de7faa85cb3fa87cd03bac9ea10d233 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 10 Dec 2024 20:59:46 +0700 Subject: [PATCH] Update Peniko and Color (#764) This brings along `PartialEq` on the color types. --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1db3f9e7..fd93b92a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "color" version = "0.1.0" -source = "git+https://github.com/linebender/color.git?rev=a4fa61aff6c3f292b729dc409e7832e5f0166e4a#a4fa61aff6c3f292b729dc409e7832e5f0166e4a" +source = "git+https://github.com/linebender/color.git?rev=f82649b205aedab1d86de98fdce858cb80e8e482#f82649b205aedab1d86de98fdce858cb80e8e482" dependencies = [ "serde", ] @@ -1656,7 +1656,7 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" [[package]] name = "peniko" version = "0.2.0" -source = "git+https://github.com/linebender/peniko.git?rev=d114c62#d114c6292dbcfb03e7360692198be423168a0edd" +source = "git+https://github.com/linebender/peniko.git?rev=3462e19#3462e19c7ba152a1c3aaa883825073180864e3e4" dependencies = [ "color", "kurbo", diff --git a/Cargo.toml b/Cargo.toml index e7c8ca43..66e62d80 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -102,7 +102,7 @@ skrifa = "0.26.0" # The version of kurbo used below should be kept in sync # with the version of kurbo used by peniko. # peniko = "0.2.0" -peniko = { version = "0.2.0", git = "https://github.com/linebender/peniko.git", rev = "d114c62" } +peniko = { version = "0.2.0", git = "https://github.com/linebender/peniko.git", rev = "3462e19" } # FIXME: This can be removed once peniko supports the schemars feature. kurbo = "0.11.1" futures-intrusive = "0.5.0"