Switch to my branch of `skribo` for much better `fill_text()` performance

This commit is contained in:
Patrick Walton 2020-03-30 21:29:25 -07:00
parent 7ac822bc2e
commit f1d5906c9e
3 changed files with 8 additions and 8 deletions

8
Cargo.lock generated
View File

@ -1626,7 +1626,7 @@ dependencies = [
"pathfinder_geometry 0.4.0", "pathfinder_geometry 0.4.0",
"pathfinder_renderer 0.1.0", "pathfinder_renderer 0.1.0",
"pathfinder_text 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]] [[package]]
@ -1844,7 +1844,7 @@ dependencies = [
"pathfinder_content 0.1.0", "pathfinder_content 0.1.0",
"pathfinder_geometry 0.4.0", "pathfinder_geometry 0.4.0",
"pathfinder_renderer 0.1.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]] [[package]]
@ -2292,7 +2292,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "skribo" name = "skribo"
version = "0.0.1" 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 = [ dependencies = [
"euclid 0.20.7 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "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 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 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 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)" = "<none>" "checksum skribo 0.0.1 (git+https://github.com/pcwalton/skribo.git?rev=7386321f763cecbce9c4ece3401c81de62305036)" = "<none>"
"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" "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 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" "checksum smithay-client-toolkit 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "93960e8975909fcb14cc755de93af2149d8b8f4eb368315537d40cfd0f324054"

View File

@ -27,8 +27,8 @@ path = "../text"
optional = true optional = true
[dependencies.skribo] [dependencies.skribo]
git = "https://github.com/linebender/skribo.git" git = "https://github.com/pcwalton/skribo.git"
rev = "f306037c36f596bba45cb9fd698ea53b6ca65e2e" rev = "7386321f763cecbce9c4ece3401c81de62305036"
optional = true optional = true
[features] [features]

View File

@ -19,5 +19,5 @@ path = "../geometry"
path = "../renderer" path = "../renderer"
[dependencies.skribo] [dependencies.skribo]
git = "https://github.com/linebender/skribo.git" git = "https://github.com/pcwalton/skribo.git"
rev = "f306037c36f596bba45cb9fd698ea53b6ca65e2e" rev = "7386321f763cecbce9c4ece3401c81de62305036"