From f1d5906c9e0ed9410b28709e5e0da88eb0e9dc77 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Mon, 30 Mar 2020 21:29:25 -0700 Subject: [PATCH] Switch to my branch of `skribo` for much better `fill_text()` performance --- Cargo.lock | 8 ++++---- canvas/Cargo.toml | 4 ++-- text/Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c3074ba7..b8e6c8b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1626,7 +1626,7 @@ dependencies = [ "pathfinder_geometry 0.4.0", "pathfinder_renderer 0.1.0", "pathfinder_text 0.1.0", - "skribo 0.0.1 (git+https://github.com/linebender/skribo.git?rev=f306037c36f596bba45cb9fd698ea53b6ca65e2e)", + "skribo 0.0.1 (git+https://github.com/pcwalton/skribo.git?rev=7386321f763cecbce9c4ece3401c81de62305036)", ] [[package]] @@ -1844,7 +1844,7 @@ dependencies = [ "pathfinder_content 0.1.0", "pathfinder_geometry 0.4.0", "pathfinder_renderer 0.1.0", - "skribo 0.0.1 (git+https://github.com/linebender/skribo.git?rev=f306037c36f596bba45cb9fd698ea53b6ca65e2e)", + "skribo 0.0.1 (git+https://github.com/pcwalton/skribo.git?rev=7386321f763cecbce9c4ece3401c81de62305036)", ] [[package]] @@ -2292,7 +2292,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "skribo" version = "0.0.1" -source = "git+https://github.com/linebender/skribo.git?rev=f306037c36f596bba45cb9fd698ea53b6ca65e2e#f306037c36f596bba45cb9fd698ea53b6ca65e2e" +source = "git+https://github.com/pcwalton/skribo.git?rev=7386321f763cecbce9c4ece3401c81de62305036#7386321f763cecbce9c4ece3401c81de62305036" dependencies = [ "euclid 0.20.7 (registry+https://github.com/rust-lang/crates.io-index)", "font-kit 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3060,7 +3060,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum shared_library 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "5a9e7e0f2bfae24d8a5b5a66c5b257a83c7412304311512a0c054cd5e619da11" "checksum simplecss 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "596554e63596d556a0dbd681416342ca61c75f1a45203201e7e77d3fa2fa9014" "checksum siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" -"checksum skribo 0.0.1 (git+https://github.com/linebender/skribo.git?rev=f306037c36f596bba45cb9fd698ea53b6ca65e2e)" = "" +"checksum skribo 0.0.1 (git+https://github.com/pcwalton/skribo.git?rev=7386321f763cecbce9c4ece3401c81de62305036)" = "" "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" "checksum smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc" "checksum smithay-client-toolkit 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "93960e8975909fcb14cc755de93af2149d8b8f4eb368315537d40cfd0f324054" diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index f96d83b4..d8293135 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -27,8 +27,8 @@ path = "../text" optional = true [dependencies.skribo] -git = "https://github.com/linebender/skribo.git" -rev = "f306037c36f596bba45cb9fd698ea53b6ca65e2e" +git = "https://github.com/pcwalton/skribo.git" +rev = "7386321f763cecbce9c4ece3401c81de62305036" optional = true [features] diff --git a/text/Cargo.toml b/text/Cargo.toml index 5699cb57..6283061a 100644 --- a/text/Cargo.toml +++ b/text/Cargo.toml @@ -19,5 +19,5 @@ path = "../geometry" path = "../renderer" [dependencies.skribo] -git = "https://github.com/linebender/skribo.git" -rev = "f306037c36f596bba45cb9fd698ea53b6ca65e2e" +git = "https://github.com/pcwalton/skribo.git" +rev = "7386321f763cecbce9c4ece3401c81de62305036"