Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Could not compile pathfinder_canvas with "pf-text" feature #313

Closed
FloVanGH opened this issue May 4, 2020 · 11 comments
Closed

Could not compile pathfinder_canvas with "pf-text" feature #313

FloVanGH opened this issue May 4, 2020 · 11 comments

Comments

@FloVanGH
Copy link

FloVanGH commented May 4, 2020

When I try to add pathfinder_canvas with the feature "pf-text" to my crate I've got an error:

  Compiling pathfinder_text v0.5.0 (https:/servo/pathfinder.git#da2f65dd)
error[E0053]: method `move_to` has an incompatible type for trait
   --> /Users/florian.blasius/.cargo/git/checkouts/pathfinder-f0bd20e7aa700f92/da2f65d/text/src/lib.rs:227:5
    |
227 |     fn move_to(&mut self, to: Vector2F) {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `pathfinder_geometry::vector::Vector2F`, found a different struct `pathfinder_geometry::vector::Vector2F`
    |
    = note: expected fn pointer `fn(&mut OutlinePathBuilder, pathfinder_geometry::vector::Vector2F)` (struct `pathfinder_geometry::vector::Vector2F`)
               found fn pointer `fn(&mut OutlinePathBuilder, pathfinder_geometry::vector::Vector2F)` (struct `pathfinder_geometry::vector::Vector2F`)
    = note: perhaps two different versions of crate `pathfinder_geometry` are being used?

error[E0053]: method `line_to` has an incompatible type for trait
   --> /Users/florian.blasius/.cargo/git/checkouts/pathfinder-f0bd20e7aa700f92/da2f65d/text/src/lib.rs:232:5
    |
232 |     fn line_to(&mut self, to: Vector2F) {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `pathfinder_geometry::vector::Vector2F`, found a different struct `pathfinder_geometry::vector::Vector2F`
    |
    = note: expected fn pointer `fn(&mut OutlinePathBuilder, pathfinder_geometry::vector::Vector2F)` (struct `pathfinder_geometry::vector::Vector2F`)
               found fn pointer `fn(&mut OutlinePathBuilder, pathfinder_geometry::vector::Vector2F)` (struct `pathfinder_geometry::vector::Vector2F`)
    = note: perhaps two different versions of crate `pathfinder_geometry` are being used?

error[E0053]: method `quadratic_curve_to` has an incompatible type for trait
   --> /Users/florian.blasius/.cargo/git/checkouts/pathfinder-f0bd20e7aa700f92/da2f65d/text/src/lib.rs:236:5
    |
236 |     fn quadratic_curve_to(&mut self, ctrl: Vector2F, to: Vector2F) {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `pathfinder_geometry::vector::Vector2F`, found a different struct `pathfinder_geometry::vector::Vector2F`
    |
    = note: expected fn pointer `fn(&mut OutlinePathBuilder, pathfinder_geometry::vector::Vector2F, pathfinder_geometry::vector::Vector2F)` (struct `pathfinder_geometry::vector::Vector2F`)
               found fn pointer `fn(&mut OutlinePathBuilder, pathfinder_geometry::vector::Vector2F, pathfinder_geometry::vector::Vector2F)` (struct `pathfinder_geometry::vector::Vector2F`)
    = note: perhaps two different versions of crate `pathfinder_geometry` are being used?

error[E0053]: method `cubic_curve_to` has an incompatible type for trait
   --> /Users/florian.blasius/.cargo/git/checkouts/pathfinder-f0bd20e7aa700f92/da2f65d/text/src/lib.rs:240:5
    |
240 |     fn cubic_curve_to(&mut self, ctrl: LineSegment2F, to: Vector2F) {
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `pathfinder_geometry::line_segment::LineSegment2F`, found a different struct `pathfinder_geometry::line_segment::LineSegment2F`
    |
    = note: expected fn pointer `fn(&mut OutlinePathBuilder, pathfinder_geometry::line_segment::LineSegment2F, pathfinder_geometry::vector::Vector2F)` (struct `pathfinder_geometry::line_segment::LineSegment2F`)
               found fn pointer `fn(&mut OutlinePathBuilder, pathfinder_geometry::line_segment::LineSegment2F, pathfinder_geometry::vector::Vector2F)` (struct `pathfinder_geometry::line_segment::LineSegment2F`)
    = note: perhaps two different versions of crate `pathfinder_geometry` are being used?

error[E0308]: mismatched types
   --> /Users/florian.blasius/.cargo/git/checkouts/pathfinder-f0bd20e7aa700f92/da2f65d/text/src/lib.rs:166:62
    |
166 |                     Transform2F::from_scale(scale).translate(offset),
    |                                                              ^^^^^^ expected struct `pathfinder_geometry::vector::Vector2F`, found a different struct `pathfinder_geometry::vector::Vector2F`
    |
    = note: perhaps two different versions of crate `pathfinder_geometry` are being used?

error: aborting due to 5 previous errors

Some errors have detailed explanations: E0053, E0308.
For more information about an error, try `rustc --explain E0053`.
error: could not compile `pathfinder_text`.
@pcwalton
Copy link
Contributor

pcwalton commented May 8, 2020

Strange, could you post your Cargo.lock?

@FloVanGH
Copy link
Author

FloVanGH commented May 8, 2020

Sure:

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "adler32"
version = "1.0.4"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "ahash"
version = "0.3.4"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "andrew"
version = "0.2.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "line_drawing 0.7.0 (registry+https:/rust-lang/crates.io-index)",
 "rusttype 0.7.9 (registry+https:/rust-lang/crates.io-index)",
 "walkdir 2.3.1 (registry+https:/rust-lang/crates.io-index)",
 "xdg 2.2.0 (registry+https:/rust-lang/crates.io-index)",
 "xml-rs 0.8.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "android_glue"
version = "0.2.3"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "approx"
version = "0.3.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "arrayref"
version = "0.3.6"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "arrayvec"
version = "0.5.1"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "autocfg"
version = "0.1.7"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "autocfg"
version = "1.0.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "backtrace"
version = "0.3.46"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "backtrace-sys 0.1.37 (registry+https:/rust-lang/crates.io-index)",
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "rustc-demangle 0.1.16 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "backtrace-sys"
version = "0.1.37"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cc 1.0.52 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "base-x"
version = "0.2.6"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "base64"
version = "0.10.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.3.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "blake2b_simd"
version = "0.5.10"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "arrayref 0.3.6 (registry+https:/rust-lang/crates.io-index)",
 "arrayvec 0.5.1 (registry+https:/rust-lang/crates.io-index)",
 "constant_time_eq 0.1.5 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "block"
version = "0.1.6"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "bumpalo"
version = "3.2.1"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "bytemuck"
version = "1.2.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "byteorder"
version = "1.3.4"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "cast"
version = "0.2.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "rustc_version 0.2.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "cc"
version = "1.0.52"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "cgl"
version = "0.3.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "cmake"
version = "0.1.42"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cc 1.0.52 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "cocoa"
version = "0.18.5"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "block 0.1.6 (registry+https:/rust-lang/crates.io-index)",
 "core-foundation 0.6.4 (registry+https:/rust-lang/crates.io-index)",
 "core-graphics 0.17.3 (registry+https:/rust-lang/crates.io-index)",
 "foreign-types 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "objc 0.2.7 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "cocoa"
version = "0.19.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "block 0.1.6 (registry+https:/rust-lang/crates.io-index)",
 "core-foundation 0.6.4 (registry+https:/rust-lang/crates.io-index)",
 "core-graphics 0.17.3 (registry+https:/rust-lang/crates.io-index)",
 "foreign-types 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "objc 0.2.7 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "color_quant"
version = "1.0.1"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "console_error_panic_hook"
version = "0.1.6"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "wasm-bindgen 0.2.62 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "core-foundation"
version = "0.6.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "core-foundation-sys 0.6.2 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "core-foundation"
version = "0.7.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "core-foundation-sys 0.7.0 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "core-foundation-sys"
version = "0.6.2"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "core-foundation-sys"
version = "0.7.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "core-graphics"
version = "0.17.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "core-foundation 0.6.4 (registry+https:/rust-lang/crates.io-index)",
 "foreign-types 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "core-graphics"
version = "0.19.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "core-foundation 0.7.0 (registry+https:/rust-lang/crates.io-index)",
 "foreign-types 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "core-text"
version = "13.3.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "core-foundation 0.6.4 (registry+https:/rust-lang/crates.io-index)",
 "core-graphics 0.17.3 (registry+https:/rust-lang/crates.io-index)",
 "foreign-types 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "core-text"
version = "15.0.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "core-foundation 0.7.0 (registry+https:/rust-lang/crates.io-index)",
 "core-graphics 0.19.0 (registry+https:/rust-lang/crates.io-index)",
 "foreign-types 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "crc32fast"
version = "1.2.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "crossbeam-channel"
version = "0.4.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-utils 0.7.2 (registry+https:/rust-lang/crates.io-index)",
 "maybe-uninit 2.0.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "crossbeam-deque"
version = "0.7.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-epoch 0.8.2 (registry+https:/rust-lang/crates.io-index)",
 "crossbeam-utils 0.7.2 (registry+https:/rust-lang/crates.io-index)",
 "maybe-uninit 2.0.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "crossbeam-epoch"
version = "0.8.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "autocfg 1.0.0 (registry+https:/rust-lang/crates.io-index)",
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "crossbeam-utils 0.7.2 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "maybe-uninit 2.0.0 (registry+https:/rust-lang/crates.io-index)",
 "memoffset 0.5.4 (registry+https:/rust-lang/crates.io-index)",
 "scopeguard 1.1.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "crossbeam-queue"
version = "0.2.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "crossbeam-utils 0.7.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "crossbeam-utils"
version = "0.7.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "autocfg 1.0.0 (registry+https:/rust-lang/crates.io-index)",
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "cssparser"
version = "0.17.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cssparser-macros 0.3.6 (registry+https:/rust-lang/crates.io-index)",
 "matches 0.1.8 (registry+https:/rust-lang/crates.io-index)",
 "phf 0.7.24 (registry+https:/rust-lang/crates.io-index)",
 "procedural-masquerade 0.1.6 (registry+https:/rust-lang/crates.io-index)",
 "quote 0.3.15 (registry+https:/rust-lang/crates.io-index)",
 "syn 0.11.11 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "cssparser-macros"
version = "0.3.6"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "phf_codegen 0.7.24 (registry+https:/rust-lang/crates.io-index)",
 "proc-macro2 1.0.12 (registry+https:/rust-lang/crates.io-index)",
 "procedural-masquerade 0.1.6 (registry+https:/rust-lang/crates.io-index)",
 "quote 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "syn 1.0.19 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "dces"
version = "0.3.0"
source = "git+https://gitlab.redox-os.org/redox-os/dces-rust.git?branch=develop#58f66adc80a32f28cf915ef07113db07941343bb"

[[package]]
name = "deflate"
version = "0.7.20"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "adler32 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "byteorder 1.3.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "deflate"
version = "0.8.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "adler32 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "byteorder 1.3.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "derive_more"
version = "0.99.5"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "proc-macro2 1.0.12 (registry+https:/rust-lang/crates.io-index)",
 "quote 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "syn 1.0.19 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "dirs"
version = "2.0.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "dirs-sys 0.3.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "dirs-sys"
version = "0.3.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "redox_users 0.3.4 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "display-link"
version = "0.2.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "foreign-types 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "objc 0.2.7 (registry+https:/rust-lang/crates.io-index)",
 "objc-foundation 0.1.1 (registry+https:/rust-lang/crates.io-index)",
 "time-point 0.1.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "dlib"
version = "0.4.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "libloading 0.5.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "downcast-rs"
version = "1.1.1"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "dwrote"
version = "0.10.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
 "wio 0.2.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "either"
version = "1.5.3"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "euc"
version = "0.5.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "vek 0.10.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "euclid"
version = "0.20.11"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "expat-sys"
version = "2.1.6"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cmake 0.1.42 (registry+https:/rust-lang/crates.io-index)",
 "pkg-config 0.3.17 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "float-ord"
version = "0.2.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "font-kit"
version = "0.6.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "byteorder 1.3.4 (registry+https:/rust-lang/crates.io-index)",
 "core-foundation 0.7.0 (registry+https:/rust-lang/crates.io-index)",
 "core-graphics 0.19.0 (registry+https:/rust-lang/crates.io-index)",
 "core-text 15.0.0 (registry+https:/rust-lang/crates.io-index)",
 "dirs 2.0.2 (registry+https:/rust-lang/crates.io-index)",
 "dwrote 0.10.0 (registry+https:/rust-lang/crates.io-index)",
 "float-ord 0.2.0 (registry+https:/rust-lang/crates.io-index)",
 "freetype 0.4.1 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_geometry 0.5.1 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_simd 0.5.0 (registry+https:/rust-lang/crates.io-index)",
 "servo-fontconfig 0.4.0 (registry+https:/rust-lang/crates.io-index)",
 "walkdir 2.3.1 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "foreign-types-shared 0.1.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "freetype"
version = "0.4.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "servo-freetype-sys 4.0.5 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "fuchsia-cprng"
version = "0.1.1"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.3.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "getrandom"
version = "0.1.14"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "wasi 0.9.0+wasi-snapshot-preview1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "gif"
version = "0.10.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "color_quant 1.0.1 (registry+https:/rust-lang/crates.io-index)",
 "lzw 0.10.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "gl"
version = "0.14.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "gl_generator 0.14.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "gl_generator"
version = "0.11.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "khronos_api 3.1.0 (registry+https:/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "xml-rs 0.8.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "gl_generator"
version = "0.13.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "khronos_api 3.1.0 (registry+https:/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "xml-rs 0.8.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "gl_generator"
version = "0.14.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "khronos_api 3.1.0 (registry+https:/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "xml-rs 0.8.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "gleam"
version = "0.7.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "gl_generator 0.13.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "half"
version = "1.5.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "harfbuzz"
version = "0.3.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "harfbuzz-sys 0.3.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "harfbuzz-sys"
version = "0.3.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cc 1.0.52 (registry+https:/rust-lang/crates.io-index)",
 "core-graphics 0.17.3 (registry+https:/rust-lang/crates.io-index)",
 "core-text 13.3.2 (registry+https:/rust-lang/crates.io-index)",
 "foreign-types 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "freetype 0.4.1 (registry+https:/rust-lang/crates.io-index)",
 "pkg-config 0.3.17 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "hashbrown"
version = "0.7.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "ahash 0.3.4 (registry+https:/rust-lang/crates.io-index)",
 "autocfg 1.0.0 (registry+https:/rust-lang/crates.io-index)",
 "serde 1.0.106 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "hermit-abi"
version = "0.1.12"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "image"
version = "0.23.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bytemuck 1.2.0 (registry+https:/rust-lang/crates.io-index)",
 "byteorder 1.3.4 (registry+https:/rust-lang/crates.io-index)",
 "gif 0.10.3 (registry+https:/rust-lang/crates.io-index)",
 "jpeg-decoder 0.1.19 (registry+https:/rust-lang/crates.io-index)",
 "num-iter 0.1.40 (registry+https:/rust-lang/crates.io-index)",
 "num-rational 0.2.4 (registry+https:/rust-lang/crates.io-index)",
 "num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)",
 "png 0.16.3 (registry+https:/rust-lang/crates.io-index)",
 "scoped_threadpool 0.1.9 (registry+https:/rust-lang/crates.io-index)",
 "tiff 0.4.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "inflate"
version = "0.4.5"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "adler32 1.0.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "instant"
version = "0.1.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "js-sys 0.3.39 (registry+https:/rust-lang/crates.io-index)",
 "wasm-bindgen 0.2.62 (registry+https:/rust-lang/crates.io-index)",
 "web-sys 0.3.39 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "io-surface"
version = "0.12.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cgl 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "core-foundation 0.6.4 (registry+https:/rust-lang/crates.io-index)",
 "gleam 0.7.0 (registry+https:/rust-lang/crates.io-index)",
 "leaky-cow 0.1.1 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "itoa"
version = "0.4.5"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "jpeg-decoder"
version = "0.1.19"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.3.4 (registry+https:/rust-lang/crates.io-index)",
 "rayon 1.3.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "js-sys"
version = "0.3.39"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "wasm-bindgen 0.2.62 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "khronos_api"
version = "3.1.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "leak"
version = "0.1.2"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "leaky-cow"
version = "0.1.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "leak 0.1.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "libc"
version = "0.2.69"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "libloading"
version = "0.5.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cc 1.0.52 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "line_drawing"
version = "0.7.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "lock_api"
version = "0.3.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "scopeguard 1.1.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "log"
version = "0.4.8"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "lyon_geom"
version = "0.15.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "arrayvec 0.5.1 (registry+https:/rust-lang/crates.io-index)",
 "euclid 0.20.11 (registry+https:/rust-lang/crates.io-index)",
 "num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "lzw"
version = "0.10.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "mach"
version = "0.3.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "matches"
version = "0.1.8"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "memmap"
version = "0.7.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "memoffset"
version = "0.5.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "autocfg 1.0.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "minifb"
version = "0.15.3"
source = "git+https:/FloVanGH/rust_minifb?branch=redox_unix#bd1d16e73e48ce82b606712737fc06d2cc5fb3c6"
dependencies = [
 "cast 0.2.3 (registry+https:/rust-lang/crates.io-index)",
 "cc 1.0.52 (registry+https:/rust-lang/crates.io-index)",
 "orbclient 0.3.27 (registry+https:/rust-lang/crates.io-index)",
 "raw-window-handle 0.3.3 (registry+https:/rust-lang/crates.io-index)",
 "tempfile 3.1.0 (registry+https:/rust-lang/crates.io-index)",
 "time 0.1.42 (git+https://gitlab.redox-os.org/redox-os/time?branch=redox-unix)",
 "wayland-client 0.25.0 (registry+https:/rust-lang/crates.io-index)",
 "wayland-protocols 0.25.0 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
 "x11-dl 2.18.5 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "miniz_oxide"
version = "0.3.6"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "adler32 1.0.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "nix"
version = "0.14.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "cc 1.0.52 (registry+https:/rust-lang/crates.io-index)",
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "void 1.0.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "nix"
version = "0.17.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "cc 1.0.52 (registry+https:/rust-lang/crates.io-index)",
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "void 1.0.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "num"
version = "0.1.42"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "num-integer 0.1.42 (registry+https:/rust-lang/crates.io-index)",
 "num-iter 0.1.40 (registry+https:/rust-lang/crates.io-index)",
 "num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "num-integer"
version = "0.1.42"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "autocfg 1.0.0 (registry+https:/rust-lang/crates.io-index)",
 "num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "num-iter"
version = "0.1.40"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "autocfg 1.0.0 (registry+https:/rust-lang/crates.io-index)",
 "num-integer 0.1.42 (registry+https:/rust-lang/crates.io-index)",
 "num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "num-rational"
version = "0.2.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "autocfg 1.0.0 (registry+https:/rust-lang/crates.io-index)",
 "num-integer 0.1.42 (registry+https:/rust-lang/crates.io-index)",
 "num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "num-traits"
version = "0.2.11"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "autocfg 1.0.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "num_cpus"
version = "1.13.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "hermit-abi 0.1.12 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "objc"
version = "0.2.7"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "malloc_buf 0.0.6 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "block 0.1.6 (registry+https:/rust-lang/crates.io-index)",
 "objc 0.2.7 (registry+https:/rust-lang/crates.io-index)",
 "objc_id 0.1.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "objc_id"
version = "0.1.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "objc 0.2.7 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "once_cell"
version = "1.3.1"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "orbclient"
version = "0.3.27"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "redox_syscall 0.1.56 (registry+https:/rust-lang/crates.io-index)",
 "sdl2 0.32.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "orbtk"
version = "0.3.1-alpha3"
dependencies = [
 "dces 0.3.0 (git+https://gitlab.redox-os.org/redox-os/dces-rust.git?branch=develop)",
 "euc 0.5.0 (registry+https:/rust-lang/crates.io-index)",
 "orbtk-api 0.3.1-alpha3",
 "orbtk-css-engine 0.3.1-alpha3",
 "orbtk-proc-macros 0.3.1-alpha3",
 "orbtk-render 0.3.1-alpha3",
 "orbtk-shell 0.3.1-alpha3",
 "orbtk-theme 0.3.1-alpha3",
 "orbtk-tree 0.3.1-alpha3",
 "orbtk-utils 0.3.1-alpha3",
 "orbtk-widgets 0.3.1-alpha3",
 "serde 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "serde_derive 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "vek 0.10.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "orbtk-api"
version = "0.3.1-alpha3"
dependencies = [
 "dces 0.3.0 (git+https://gitlab.redox-os.org/redox-os/dces-rust.git?branch=develop)",
 "derive_more 0.99.5 (registry+https:/rust-lang/crates.io-index)",
 "dirs 2.0.2 (registry+https:/rust-lang/crates.io-index)",
 "orbtk-css-engine 0.3.1-alpha3",
 "orbtk-proc-macros 0.3.1-alpha3",
 "orbtk-render 0.3.1-alpha3",
 "orbtk-shell 0.3.1-alpha3",
 "orbtk-theme 0.3.1-alpha3",
 "orbtk-tree 0.3.1-alpha3",
 "orbtk-utils 0.3.1-alpha3",
 "raw-window-handle 0.3.3 (registry+https:/rust-lang/crates.io-index)",
 "ron 0.5.1 (registry+https:/rust-lang/crates.io-index)",
 "serde 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "serde_derive 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "stdweb 0.4.20 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "orbtk-css-engine"
version = "0.3.1-alpha3"
dependencies = [
 "cssparser 0.17.0 (registry+https:/rust-lang/crates.io-index)",
 "orbtk-utils 0.3.1-alpha3",
]

[[package]]
name = "orbtk-proc-macros"
version = "0.3.1-alpha3"
dependencies = [
 "quote 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "syn 1.0.19 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "orbtk-render"
version = "0.3.1-alpha3"
dependencies = [
 "image 0.23.4 (registry+https:/rust-lang/crates.io-index)",
 "orbtk-utils 0.3.1-alpha3",
 "pathfinder_canvas 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_color 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_content 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_geometry 0.5.1 (git+https:/servo/pathfinder.git)",
 "pathfinder_gl 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_gpu 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_renderer 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_resources 0.5.0 (git+https:/servo/pathfinder.git)",
 "raqote 0.7.14 (registry+https:/rust-lang/crates.io-index)",
 "rusttype 0.8.3 (registry+https:/rust-lang/crates.io-index)",
 "stdweb 0.4.20 (registry+https:/rust-lang/crates.io-index)",
 "surfman 0.2.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "orbtk-shell"
version = "0.3.1-alpha3"
dependencies = [
 "console_error_panic_hook 0.1.6 (registry+https:/rust-lang/crates.io-index)",
 "euclid 0.20.11 (registry+https:/rust-lang/crates.io-index)",
 "gl 0.14.0 (registry+https:/rust-lang/crates.io-index)",
 "image 0.23.4 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "minifb 0.15.3 (git+https:/FloVanGH/rust_minifb?branch=redox_unix)",
 "orbtk-render 0.3.1-alpha3",
 "orbtk-utils 0.3.1-alpha3",
 "pathfinder_color 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_geometry 0.5.1 (git+https:/servo/pathfinder.git)",
 "pathfinder_gl 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_renderer 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_resources 0.5.0 (git+https:/servo/pathfinder.git)",
 "raw-window-handle 0.3.3 (registry+https:/rust-lang/crates.io-index)",
 "spin_sleep 0.3.7 (registry+https:/rust-lang/crates.io-index)",
 "stdweb 0.4.20 (registry+https:/rust-lang/crates.io-index)",
 "surfman 0.2.0 (registry+https:/rust-lang/crates.io-index)",
 "winit 0.19.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "orbtk-theme"
version = "0.3.1-alpha3"
dependencies = [
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "orbtk-css-engine 0.3.1-alpha3",
]

[[package]]
name = "orbtk-tree"
version = "0.3.1-alpha3"
dependencies = [
 "dces 0.3.0 (git+https://gitlab.redox-os.org/redox-os/dces-rust.git?branch=develop)",
]

[[package]]
name = "orbtk-utils"
version = "0.3.1-alpha3"

[[package]]
name = "orbtk-widgets"
version = "0.3.1-alpha3"
dependencies = [
 "dces 0.3.0 (git+https://gitlab.redox-os.org/redox-os/dces-rust.git?branch=develop)",
 "orbtk-api 0.3.1-alpha3",
 "orbtk-proc-macros 0.3.1-alpha3",
 "orbtk-render 0.3.1-alpha3",
 "orbtk-shell 0.3.1-alpha3",
 "orbtk-theme 0.3.1-alpha3",
 "orbtk-utils 0.3.1-alpha3",
]

[[package]]
name = "ordered-float"
version = "1.0.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "parking_lot"
version = "0.9.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "lock_api 0.3.4 (registry+https:/rust-lang/crates.io-index)",
 "parking_lot_core 0.6.2 (registry+https:/rust-lang/crates.io-index)",
 "rustc_version 0.2.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "parking_lot_core"
version = "0.6.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "cloudabi 0.0.3 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "redox_syscall 0.1.56 (registry+https:/rust-lang/crates.io-index)",
 "rustc_version 0.2.3 (registry+https:/rust-lang/crates.io-index)",
 "smallvec 0.6.13 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "pathfinder_canvas"
version = "0.5.0"
source = "git+https:/servo/pathfinder.git#e766721f37fe629bd9d8483a5fba1f55163aa868"
dependencies = [
 "font-kit 0.6.0 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_color 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_content 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_geometry 0.5.1 (git+https:/servo/pathfinder.git)",
 "pathfinder_renderer 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_text 0.5.0 (git+https:/servo/pathfinder.git)",
 "skribo 0.1.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "pathfinder_color"
version = "0.5.0"
source = "git+https:/servo/pathfinder.git#e766721f37fe629bd9d8483a5fba1f55163aa868"
dependencies = [
 "pathfinder_simd 0.5.0 (git+https:/servo/pathfinder.git)",
]

[[package]]
name = "pathfinder_content"
version = "0.5.0"
source = "git+https:/servo/pathfinder.git#e766721f37fe629bd9d8483a5fba1f55163aa868"
dependencies = [
 "arrayvec 0.5.1 (registry+https:/rust-lang/crates.io-index)",
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "image 0.23.4 (registry+https:/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_color 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_geometry 0.5.1 (git+https:/servo/pathfinder.git)",
 "pathfinder_simd 0.5.0 (git+https:/servo/pathfinder.git)",
 "smallvec 1.4.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "pathfinder_geometry"
version = "0.5.1"
source = "git+https:/servo/pathfinder.git#e766721f37fe629bd9d8483a5fba1f55163aa868"
dependencies = [
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_simd 0.5.0 (git+https:/servo/pathfinder.git)",
]

[[package]]
name = "pathfinder_geometry"
version = "0.5.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_simd 0.5.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "pathfinder_gl"
version = "0.5.0"
source = "git+https:/servo/pathfinder.git#e766721f37fe629bd9d8483a5fba1f55163aa868"
dependencies = [
 "gl 0.14.0 (registry+https:/rust-lang/crates.io-index)",
 "half 1.5.0 (registry+https:/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_geometry 0.5.1 (git+https:/servo/pathfinder.git)",
 "pathfinder_gpu 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_resources 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_simd 0.5.0 (git+https:/servo/pathfinder.git)",
]

[[package]]
name = "pathfinder_gpu"
version = "0.5.0"
source = "git+https:/servo/pathfinder.git#e766721f37fe629bd9d8483a5fba1f55163aa868"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "half 1.5.0 (registry+https:/rust-lang/crates.io-index)",
 "image 0.23.4 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_color 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_geometry 0.5.1 (git+https:/servo/pathfinder.git)",
 "pathfinder_resources 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_simd 0.5.0 (git+https:/servo/pathfinder.git)",
]

[[package]]
name = "pathfinder_renderer"
version = "0.5.0"
source = "git+https:/servo/pathfinder.git#e766721f37fe629bd9d8483a5fba1f55163aa868"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "byteorder 1.3.4 (registry+https:/rust-lang/crates.io-index)",
 "crossbeam-channel 0.4.2 (registry+https:/rust-lang/crates.io-index)",
 "fxhash 0.2.1 (registry+https:/rust-lang/crates.io-index)",
 "half 1.5.0 (registry+https:/rust-lang/crates.io-index)",
 "hashbrown 0.7.2 (registry+https:/rust-lang/crates.io-index)",
 "instant 0.1.3 (registry+https:/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_color 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_content 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_geometry 0.5.1 (git+https:/servo/pathfinder.git)",
 "pathfinder_gpu 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_resources 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_simd 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_ui 0.5.0 (git+https:/servo/pathfinder.git)",
 "rayon 1.3.0 (registry+https:/rust-lang/crates.io-index)",
 "serde 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "serde_json 1.0.52 (registry+https:/rust-lang/crates.io-index)",
 "smallvec 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "vec_map 0.8.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "pathfinder_resources"
version = "0.5.0"
source = "git+https:/servo/pathfinder.git#e766721f37fe629bd9d8483a5fba1f55163aa868"

[[package]]
name = "pathfinder_simd"
version = "0.5.0"
source = "git+https:/servo/pathfinder.git#e766721f37fe629bd9d8483a5fba1f55163aa868"
dependencies = [
 "rustc_version 0.2.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "pathfinder_simd"
version = "0.5.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "rustc_version 0.2.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "pathfinder_text"
version = "0.5.0"
source = "git+https:/servo/pathfinder.git#e766721f37fe629bd9d8483a5fba1f55163aa868"
dependencies = [
 "font-kit 0.6.0 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_content 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_geometry 0.5.1 (git+https:/servo/pathfinder.git)",
 "pathfinder_renderer 0.5.0 (git+https:/servo/pathfinder.git)",
 "skribo 0.1.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "pathfinder_ui"
version = "0.5.0"
source = "git+https:/servo/pathfinder.git#e766721f37fe629bd9d8483a5fba1f55163aa868"
dependencies = [
 "hashbrown 0.7.2 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_color 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_geometry 0.5.1 (git+https:/servo/pathfinder.git)",
 "pathfinder_gpu 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_resources 0.5.0 (git+https:/servo/pathfinder.git)",
 "pathfinder_simd 0.5.0 (git+https:/servo/pathfinder.git)",
 "serde 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "serde_derive 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "serde_json 1.0.52 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "phf"
version = "0.7.24"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "phf_shared 0.7.24 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "phf_codegen"
version = "0.7.24"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "phf_generator 0.7.24 (registry+https:/rust-lang/crates.io-index)",
 "phf_shared 0.7.24 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "phf_generator"
version = "0.7.24"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "phf_shared 0.7.24 (registry+https:/rust-lang/crates.io-index)",
 "rand 0.6.5 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "phf_shared"
version = "0.7.24"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "siphasher 0.2.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "pkg-config"
version = "0.3.17"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "png"
version = "0.15.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "crc32fast 1.2.0 (registry+https:/rust-lang/crates.io-index)",
 "deflate 0.7.20 (registry+https:/rust-lang/crates.io-index)",
 "inflate 0.4.5 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "png"
version = "0.16.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "crc32fast 1.2.0 (registry+https:/rust-lang/crates.io-index)",
 "deflate 0.8.4 (registry+https:/rust-lang/crates.io-index)",
 "inflate 0.4.5 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "ppv-lite86"
version = "0.2.6"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "proc-macro2"
version = "0.4.30"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "unicode-xid 0.1.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "proc-macro2"
version = "1.0.12"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "unicode-xid 0.2.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "procedural-masquerade"
version = "0.1.6"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "quote"
version = "0.3.15"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "quote"
version = "0.6.13"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "proc-macro2 0.4.30 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "quote"
version = "1.0.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "proc-macro2 1.0.12 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand"
version = "0.6.5"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "autocfg 0.1.7 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "rand_chacha 0.1.1 (registry+https:/rust-lang/crates.io-index)",
 "rand_core 0.4.2 (registry+https:/rust-lang/crates.io-index)",
 "rand_hc 0.1.0 (registry+https:/rust-lang/crates.io-index)",
 "rand_isaac 0.1.1 (registry+https:/rust-lang/crates.io-index)",
 "rand_jitter 0.1.4 (registry+https:/rust-lang/crates.io-index)",
 "rand_os 0.1.3 (registry+https:/rust-lang/crates.io-index)",
 "rand_pcg 0.1.2 (registry+https:/rust-lang/crates.io-index)",
 "rand_xorshift 0.1.1 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "getrandom 0.1.14 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "rand_chacha 0.2.2 (registry+https:/rust-lang/crates.io-index)",
 "rand_core 0.5.1 (registry+https:/rust-lang/crates.io-index)",
 "rand_hc 0.2.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_chacha"
version = "0.1.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "autocfg 0.1.7 (registry+https:/rust-lang/crates.io-index)",
 "rand_core 0.3.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "ppv-lite86 0.2.6 (registry+https:/rust-lang/crates.io-index)",
 "rand_core 0.5.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_core"
version = "0.3.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "rand_core 0.4.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_core"
version = "0.4.2"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "getrandom 0.1.14 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_hc"
version = "0.1.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "rand_core 0.3.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "rand_core 0.5.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_isaac"
version = "0.1.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "rand_core 0.3.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_jitter"
version = "0.1.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "rand_core 0.4.2 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_os"
version = "0.1.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cloudabi 0.0.3 (registry+https:/rust-lang/crates.io-index)",
 "fuchsia-cprng 0.1.1 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "rand_core 0.4.2 (registry+https:/rust-lang/crates.io-index)",
 "rdrand 0.4.0 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_pcg"
version = "0.1.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "autocfg 0.1.7 (registry+https:/rust-lang/crates.io-index)",
 "rand_core 0.4.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_xorshift"
version = "0.1.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "rand_core 0.3.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "raqote"
version = "0.7.14"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "euclid 0.20.11 (registry+https:/rust-lang/crates.io-index)",
 "lyon_geom 0.15.2 (registry+https:/rust-lang/crates.io-index)",
 "png 0.15.3 (registry+https:/rust-lang/crates.io-index)",
 "sw-composite 0.7.8 (registry+https:/rust-lang/crates.io-index)",
 "typed-arena 2.0.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "raw-window-handle"
version = "0.3.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rayon"
version = "1.3.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-deque 0.7.3 (registry+https:/rust-lang/crates.io-index)",
 "either 1.5.3 (registry+https:/rust-lang/crates.io-index)",
 "rayon-core 1.7.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rayon-core"
version = "1.7.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-deque 0.7.3 (registry+https:/rust-lang/crates.io-index)",
 "crossbeam-queue 0.2.1 (registry+https:/rust-lang/crates.io-index)",
 "crossbeam-utils 0.7.2 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "num_cpus 1.13.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rdrand"
version = "0.4.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "rand_core 0.3.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "redox_syscall"
version = "0.1.56"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "redox_users"
version = "0.3.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "getrandom 0.1.14 (registry+https:/rust-lang/crates.io-index)",
 "redox_syscall 0.1.56 (registry+https:/rust-lang/crates.io-index)",
 "rust-argon2 0.7.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "remove_dir_all"
version = "0.5.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "ron"
version = "0.5.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "base64 0.10.1 (registry+https:/rust-lang/crates.io-index)",
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "serde 1.0.106 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rust-argon2"
version = "0.7.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "base64 0.11.0 (registry+https:/rust-lang/crates.io-index)",
 "blake2b_simd 0.5.10 (registry+https:/rust-lang/crates.io-index)",
 "constant_time_eq 0.1.5 (registry+https:/rust-lang/crates.io-index)",
 "crossbeam-utils 0.7.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rustc-demangle"
version = "0.1.16"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "semver 0.9.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rusttype"
version = "0.7.9"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "rusttype 0.8.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rusttype"
version = "0.8.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "approx 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "ordered-float 1.0.2 (registry+https:/rust-lang/crates.io-index)",
 "stb_truetype 0.3.1 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "ryu"
version = "1.0.4"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "winapi-util 0.1.5 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "scoped_threadpool"
version = "0.1.9"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "sdl2"
version = "0.32.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "num 0.1.42 (registry+https:/rust-lang/crates.io-index)",
 "rand 0.6.5 (registry+https:/rust-lang/crates.io-index)",
 "sdl2-sys 0.32.6 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "sdl2-sys"
version = "0.32.6"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "semver-parser 0.7.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "serde"
version = "1.0.106"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "serde_derive 1.0.106 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "serde_derive"
version = "1.0.106"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "proc-macro2 1.0.12 (registry+https:/rust-lang/crates.io-index)",
 "quote 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "syn 1.0.19 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "serde_json"
version = "1.0.52"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "itoa 0.4.5 (registry+https:/rust-lang/crates.io-index)",
 "ryu 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "serde 1.0.106 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "servo-fontconfig"
version = "0.4.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "servo-fontconfig-sys 4.0.9 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "servo-fontconfig-sys"
version = "4.0.9"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "expat-sys 2.1.6 (registry+https:/rust-lang/crates.io-index)",
 "pkg-config 0.3.17 (registry+https:/rust-lang/crates.io-index)",
 "servo-freetype-sys 4.0.5 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "servo-freetype-sys"
version = "4.0.5"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cmake 0.1.42 (registry+https:/rust-lang/crates.io-index)",
 "pkg-config 0.3.17 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "sha1"
version = "0.6.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "siphasher"
version = "0.2.3"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "skribo"
version = "0.1.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "font-kit 0.6.0 (registry+https:/rust-lang/crates.io-index)",
 "harfbuzz 0.3.1 (registry+https:/rust-lang/crates.io-index)",
 "harfbuzz-sys 0.3.4 (registry+https:/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "pathfinder_geometry 0.5.1 (registry+https:/rust-lang/crates.io-index)",
 "unicode-normalization 0.1.12 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "smallvec"
version = "0.6.13"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "maybe-uninit 2.0.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "smallvec"
version = "1.4.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "smithay-client-toolkit"
version = "0.4.6"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "andrew 0.2.1 (registry+https:/rust-lang/crates.io-index)",
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "dlib 0.4.1 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "memmap 0.7.0 (registry+https:/rust-lang/crates.io-index)",
 "nix 0.14.1 (registry+https:/rust-lang/crates.io-index)",
 "wayland-client 0.21.13 (registry+https:/rust-lang/crates.io-index)",
 "wayland-commons 0.21.13 (registry+https:/rust-lang/crates.io-index)",
 "wayland-protocols 0.21.13 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "spin_sleep"
version = "0.3.7"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "stb_truetype"
version = "0.3.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.3.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "discard 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "rustc_version 0.2.3 (registry+https:/rust-lang/crates.io-index)",
 "serde 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "serde_json 1.0.52 (registry+https:/rust-lang/crates.io-index)",
 "stdweb-derive 0.5.3 (registry+https:/rust-lang/crates.io-index)",
 "stdweb-internal-macros 0.2.9 (registry+https:/rust-lang/crates.io-index)",
 "stdweb-internal-runtime 0.1.5 (registry+https:/rust-lang/crates.io-index)",
 "wasm-bindgen 0.2.62 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "stdweb-derive"
version = "0.5.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "proc-macro2 1.0.12 (registry+https:/rust-lang/crates.io-index)",
 "quote 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "serde 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "serde_derive 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "syn 1.0.19 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "stdweb-internal-macros"
version = "0.2.9"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "base-x 0.2.6 (registry+https:/rust-lang/crates.io-index)",
 "proc-macro2 1.0.12 (registry+https:/rust-lang/crates.io-index)",
 "quote 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "serde 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "serde_derive 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "serde_json 1.0.52 (registry+https:/rust-lang/crates.io-index)",
 "sha1 0.6.0 (registry+https:/rust-lang/crates.io-index)",
 "syn 1.0.19 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "surfman"
version = "0.2.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "cgl 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "cocoa 0.19.1 (registry+https:/rust-lang/crates.io-index)",
 "core-foundation 0.6.4 (registry+https:/rust-lang/crates.io-index)",
 "core-graphics 0.17.3 (registry+https:/rust-lang/crates.io-index)",
 "display-link 0.2.0 (registry+https:/rust-lang/crates.io-index)",
 "euclid 0.20.11 (registry+https:/rust-lang/crates.io-index)",
 "gl_generator 0.11.0 (registry+https:/rust-lang/crates.io-index)",
 "io-surface 0.12.1 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "mach 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "objc 0.2.7 (registry+https:/rust-lang/crates.io-index)",
 "parking_lot 0.9.0 (registry+https:/rust-lang/crates.io-index)",
 "wayland-sys 0.24.1 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
 "winit 0.19.3 (registry+https:/rust-lang/crates.io-index)",
 "wio 0.2.2 (registry+https:/rust-lang/crates.io-index)",
 "x11 2.18.2 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "sw-composite"
version = "0.7.8"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "syn"
version = "0.11.11"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "quote 0.3.15 (registry+https:/rust-lang/crates.io-index)",
 "synom 0.11.3 (registry+https:/rust-lang/crates.io-index)",
 "unicode-xid 0.0.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "syn"
version = "1.0.19"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "proc-macro2 1.0.12 (registry+https:/rust-lang/crates.io-index)",
 "quote 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "unicode-xid 0.2.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "synom"
version = "0.11.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "unicode-xid 0.0.4 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "tempfile"
version = "3.1.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "rand 0.7.3 (registry+https:/rust-lang/crates.io-index)",
 "redox_syscall 0.1.56 (registry+https:/rust-lang/crates.io-index)",
 "remove_dir_all 0.5.2 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "tiff"
version = "0.4.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "byteorder 1.3.4 (registry+https:/rust-lang/crates.io-index)",
 "lzw 0.10.0 (registry+https:/rust-lang/crates.io-index)",
 "miniz_oxide 0.3.6 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "time"
version = "0.1.42"
source = "git+https://gitlab.redox-os.org/redox-os/time?branch=redox-unix#0c24c8c1483e17b4c7974c68dbb29d609d9c699b"
dependencies = [
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "time-point"
version = "0.1.1"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "typed-arena"
version = "2.0.1"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "unicode-normalization"
version = "0.1.12"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "smallvec 1.4.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "unicode-xid"
version = "0.0.4"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "unicode-xid"
version = "0.2.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "vek"
version = "0.10.4"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "approx 0.3.2 (registry+https:/rust-lang/crates.io-index)",
 "num-integer 0.1.42 (registry+https:/rust-lang/crates.io-index)",
 "num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)",
 "rustc_version 0.2.3 (registry+https:/rust-lang/crates.io-index)",
 "serde 1.0.106 (registry+https:/rust-lang/crates.io-index)",
 "static_assertions 1.1.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "void"
version = "1.0.2"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "walkdir"
version = "2.3.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "same-file 1.0.6 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
 "winapi-util 0.1.5 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "wasm-bindgen"
version = "0.2.62"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)",
 "wasm-bindgen-macro 0.2.62 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wasm-bindgen-backend"
version = "0.2.62"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bumpalo 3.2.1 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "proc-macro2 1.0.12 (registry+https:/rust-lang/crates.io-index)",
 "quote 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "syn 1.0.19 (registry+https:/rust-lang/crates.io-index)",
 "wasm-bindgen-shared 0.2.62 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wasm-bindgen-macro"
version = "0.2.62"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "quote 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "wasm-bindgen-macro-support 0.2.62 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.62"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "proc-macro2 1.0.12 (registry+https:/rust-lang/crates.io-index)",
 "quote 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "syn 1.0.19 (registry+https:/rust-lang/crates.io-index)",
 "wasm-bindgen-backend 0.2.62 (registry+https:/rust-lang/crates.io-index)",
 "wasm-bindgen-shared 0.2.62 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wasm-bindgen-shared"
version = "0.2.62"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "wayland-client"
version = "0.21.13"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "downcast-rs 1.1.1 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "nix 0.14.1 (registry+https:/rust-lang/crates.io-index)",
 "wayland-commons 0.21.13 (registry+https:/rust-lang/crates.io-index)",
 "wayland-scanner 0.21.13 (registry+https:/rust-lang/crates.io-index)",
 "wayland-sys 0.21.13 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wayland-client"
version = "0.25.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "downcast-rs 1.1.1 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "nix 0.17.0 (registry+https:/rust-lang/crates.io-index)",
 "wayland-commons 0.25.0 (registry+https:/rust-lang/crates.io-index)",
 "wayland-scanner 0.25.0 (registry+https:/rust-lang/crates.io-index)",
 "wayland-sys 0.25.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wayland-commons"
version = "0.21.13"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "nix 0.14.1 (registry+https:/rust-lang/crates.io-index)",
 "wayland-sys 0.21.13 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wayland-commons"
version = "0.25.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "nix 0.17.0 (registry+https:/rust-lang/crates.io-index)",
 "once_cell 1.3.1 (registry+https:/rust-lang/crates.io-index)",
 "smallvec 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "wayland-sys 0.25.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wayland-protocols"
version = "0.21.13"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "wayland-client 0.21.13 (registry+https:/rust-lang/crates.io-index)",
 "wayland-commons 0.21.13 (registry+https:/rust-lang/crates.io-index)",
 "wayland-scanner 0.21.13 (registry+https:/rust-lang/crates.io-index)",
 "wayland-sys 0.21.13 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wayland-protocols"
version = "0.25.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "wayland-client 0.25.0 (registry+https:/rust-lang/crates.io-index)",
 "wayland-commons 0.25.0 (registry+https:/rust-lang/crates.io-index)",
 "wayland-scanner 0.25.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wayland-scanner"
version = "0.21.13"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "proc-macro2 0.4.30 (registry+https:/rust-lang/crates.io-index)",
 "quote 0.6.13 (registry+https:/rust-lang/crates.io-index)",
 "xml-rs 0.8.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wayland-scanner"
version = "0.25.0"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "proc-macro2 1.0.12 (registry+https:/rust-lang/crates.io-index)",
 "quote 1.0.4 (registry+https:/rust-lang/crates.io-index)",
 "xml-rs 0.8.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wayland-sys"
version = "0.21.13"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "dlib 0.4.1 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wayland-sys"
version = "0.24.1"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "dlib 0.4.1 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wayland-sys"
version = "0.25.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "web-sys"
version = "0.3.39"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "js-sys 0.3.39 (registry+https:/rust-lang/crates.io-index)",
 "wasm-bindgen 0.2.62 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "winapi"
version = "0.3.8"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "winapi-i686-pc-windows-gnu 0.4.0 (registry+https:/rust-lang/crates.io-index)",
 "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "winit"
version = "0.19.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "android_glue 0.2.3 (registry+https:/rust-lang/crates.io-index)",
 "backtrace 0.3.46 (registry+https:/rust-lang/crates.io-index)",
 "bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)",
 "cocoa 0.18.5 (registry+https:/rust-lang/crates.io-index)",
 "core-foundation 0.6.4 (registry+https:/rust-lang/crates.io-index)",
 "core-graphics 0.17.3 (registry+https:/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https:/rust-lang/crates.io-index)",
 "objc 0.2.7 (registry+https:/rust-lang/crates.io-index)",
 "parking_lot 0.9.0 (registry+https:/rust-lang/crates.io-index)",
 "percent-encoding 2.1.0 (registry+https:/rust-lang/crates.io-index)",
 "smithay-client-toolkit 0.4.6 (registry+https:/rust-lang/crates.io-index)",
 "wayland-client 0.21.13 (registry+https:/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
 "x11-dl 2.18.5 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "wio"
version = "0.2.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "x11"
version = "2.18.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "pkg-config 0.3.17 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "x11-dl"
version = "2.18.5"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
 "lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)",
 "libc 0.2.69 (registry+https:/rust-lang/crates.io-index)",
 "maybe-uninit 2.0.0 (registry+https:/rust-lang/crates.io-index)",
 "pkg-config 0.3.17 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "xdg"
version = "2.2.0"
source = "registry+https:/rust-lang/crates.io-index"

[[package]]
name = "xml-rs"
version = "0.8.3"
source = "registry+https:/rust-lang/crates.io-index"

[metadata]
"checksum adler32 1.0.4 (registry+https:/rust-lang/crates.io-index)" = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2"
"checksum ahash 0.3.4 (registry+https:/rust-lang/crates.io-index)" = "9c251dce3391a07b43218ca070203ecb8f9f520d35ab71312296a59dbceab154"
"checksum andrew 0.2.1 (registry+https:/rust-lang/crates.io-index)" = "9b7f09f89872c2b6b29e319377b1fbe91c6f5947df19a25596e121cf19a7b35e"
"checksum android_glue 0.2.3 (registry+https:/rust-lang/crates.io-index)" = "000444226fcff248f2bc4c7625be32c63caccfecc2723a2b9f78a7487a49c407"
"checksum approx 0.3.2 (registry+https:/rust-lang/crates.io-index)" = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
"checksum arrayref 0.3.6 (registry+https:/rust-lang/crates.io-index)" = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
"checksum arrayvec 0.5.1 (registry+https:/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
"checksum autocfg 0.1.7 (registry+https:/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
"checksum autocfg 1.0.0 (registry+https:/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
"checksum backtrace 0.3.46 (registry+https:/rust-lang/crates.io-index)" = "b1e692897359247cc6bb902933361652380af0f1b7651ae5c5013407f30e109e"
"checksum backtrace-sys 0.1.37 (registry+https:/rust-lang/crates.io-index)" = "18fbebbe1c9d1f383a9cc7e8ccdb471b91c8d024ee9c2ca5b5346121fe8b4399"
"checksum base-x 0.2.6 (registry+https:/rust-lang/crates.io-index)" = "1b20b618342cf9891c292c4f5ac2cde7287cc5c87e87e9c769d617793607dec1"
"checksum base64 0.10.1 (registry+https:/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
"checksum base64 0.11.0 (registry+https:/rust-lang/crates.io-index)" = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
"checksum bitflags 1.2.1 (registry+https:/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
"checksum blake2b_simd 0.5.10 (registry+https:/rust-lang/crates.io-index)" = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
"checksum block 0.1.6 (registry+https:/rust-lang/crates.io-index)" = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
"checksum bumpalo 3.2.1 (registry+https:/rust-lang/crates.io-index)" = "12ae9db68ad7fac5fe51304d20f016c911539251075a214f8e663babefa35187"
"checksum bytemuck 1.2.0 (registry+https:/rust-lang/crates.io-index)" = "37fa13df2292ecb479ec23aa06f4507928bef07839be9ef15281411076629431"
"checksum byteorder 1.3.4 (registry+https:/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
"checksum cast 0.2.3 (registry+https:/rust-lang/crates.io-index)" = "4b9434b9a5aa1450faa3f9cb14ea0e8c53bb5d2b3c1bfd1ab4fc03e9f33fbfb0"
"checksum cc 1.0.52 (registry+https:/rust-lang/crates.io-index)" = "c3d87b23d6a92cd03af510a5ade527033f6aa6fa92161e2d5863a907d4c5e31d"
"checksum cfg-if 0.1.10 (registry+https:/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
"checksum cgl 0.3.2 (registry+https:/rust-lang/crates.io-index)" = "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff"
"checksum cloudabi 0.0.3 (registry+https:/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
"checksum cmake 0.1.42 (registry+https:/rust-lang/crates.io-index)" = "81fb25b677f8bf1eb325017cb6bb8452f87969db0fedb4f757b297bee78a7c62"
"checksum cocoa 0.18.5 (registry+https:/rust-lang/crates.io-index)" = "1706996401131526e36b3b49f0c4d912639ce110996f3ca144d78946727bce54"
"checksum cocoa 0.19.1 (registry+https:/rust-lang/crates.io-index)" = "f29f7768b2d1be17b96158e3285951d366b40211320fb30826a76cb7a0da6400"
"checksum color_quant 1.0.1 (registry+https:/rust-lang/crates.io-index)" = "0dbbb57365263e881e805dc77d94697c9118fd94d8da011240555aa7b23445bd"
"checksum console_error_panic_hook 0.1.6 (registry+https:/rust-lang/crates.io-index)" = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
"checksum constant_time_eq 0.1.5 (registry+https:/rust-lang/crates.io-index)" = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
"checksum core-foundation 0.6.4 (registry+https:/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d"
"checksum core-foundation 0.7.0 (registry+https:/rust-lang/crates.io-index)" = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
"checksum core-foundation-sys 0.6.2 (registry+https:/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b"
"checksum core-foundation-sys 0.7.0 (registry+https:/rust-lang/crates.io-index)" = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
"checksum core-graphics 0.17.3 (registry+https:/rust-lang/crates.io-index)" = "56790968ab1c8a1202a102e6de05fc6e1ec87da99e4e93e9a7d13efbfc1e95a9"
"checksum core-graphics 0.19.0 (registry+https:/rust-lang/crates.io-index)" = "59e78b2e0aaf43f08e7ae0d6bc96895ef72ff0921c7d4ff4762201b2dba376dd"
"checksum core-text 13.3.2 (registry+https:/rust-lang/crates.io-index)" = "db84654ad95211c082cf9795f6f83dc17d0ae6c985ac1b906369dc7384ed346d"
"checksum core-text 15.0.0 (registry+https:/rust-lang/crates.io-index)" = "131b3fd1f8bd5db9f2b398fa4fdb6008c64afc04d447c306ac2c7e98fba2a61d"
"checksum crc32fast 1.2.0 (registry+https:/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
"checksum crossbeam-channel 0.4.2 (registry+https:/rust-lang/crates.io-index)" = "cced8691919c02aac3cb0a1bc2e9b73d89e832bf9a06fc579d4e71b68a2da061"
"checksum crossbeam-deque 0.7.3 (registry+https:/rust-lang/crates.io-index)" = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
"checksum crossbeam-epoch 0.8.2 (registry+https:/rust-lang/crates.io-index)" = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
"checksum crossbeam-queue 0.2.1 (registry+https:/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db"
"checksum crossbeam-utils 0.7.2 (registry+https:/rust-lang/crates.io-index)" = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
"checksum cssparser 0.17.0 (registry+https:/rust-lang/crates.io-index)" = "e7063452c60432cb306ed54d538178c20792d47fa960c240ce6c083239ee55ec"
"checksum cssparser-macros 0.3.6 (registry+https:/rust-lang/crates.io-index)" = "5bb1c84e87c717666564ec056105052331431803d606bd45529b28547b611eef"
"checksum dces 0.3.0 (git+https://gitlab.redox-os.org/redox-os/dces-rust.git?branch=develop)" = "<none>"
"checksum deflate 0.7.20 (registry+https:/rust-lang/crates.io-index)" = "707b6a7b384888a70c8d2e8650b3e60170dfc6a67bb4aa67b6dfca57af4bedb4"
"checksum deflate 0.8.4 (registry+https:/rust-lang/crates.io-index)" = "e7e5d2a2273fed52a7f947ee55b092c4057025d7a3e04e5ecdbd25d6c3fb1bd7"
"checksum derive_more 0.99.5 (registry+https:/rust-lang/crates.io-index)" = "e2323f3f47db9a0e77ce7a300605d8d2098597fc451ed1a97bb1f6411bb550a7"
"checksum dirs 2.0.2 (registry+https:/rust-lang/crates.io-index)" = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
"checksum dirs-sys 0.3.4 (registry+https:/rust-lang/crates.io-index)" = "afa0b23de8fd801745c471deffa6e12d248f962c9fd4b4c33787b055599bde7b"
"checksum discard 1.0.4 (registry+https:/rust-lang/crates.io-index)" = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
"checksum display-link 0.2.0 (registry+https:/rust-lang/crates.io-index)" = "303de632386f9c82eb7823456f5932bd40b4de9521078901767bf16a9f331491"
"checksum dlib 0.4.1 (registry+https:/rust-lang/crates.io-index)" = "77e51249a9d823a4cb79e3eca6dcd756153e8ed0157b6c04775d04bf1b13b76a"
"checksum downcast-rs 1.1.1 (registry+https:/rust-lang/crates.io-index)" = "52ba6eb47c2131e784a38b726eb54c1e1484904f013e576a25354d0124161af6"
"checksum dwrote 0.10.0 (registry+https:/rust-lang/crates.io-index)" = "bcdf488e3a52a7aa30a05732a3e58420e22acb4b2b75635a561fc6ffbcab59ef"
"checksum either 1.5.3 (registry+https:/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
"checksum euc 0.5.0 (registry+https:/rust-lang/crates.io-index)" = "ed019c07d54f49d3efd699f68c47ced2958b9917fca7c48092c489792732faa5"
"checksum euclid 0.20.11 (registry+https:/rust-lang/crates.io-index)" = "667703ececa1ac04d1d40ae0c0fd6401b91d8caccfda3a65458ca8ee5dfedf1c"
"checksum expat-sys 2.1.6 (registry+https:/rust-lang/crates.io-index)" = "658f19728920138342f68408b7cf7644d90d4784353d8ebc32e7e8663dbe45fa"
"checksum float-ord 0.2.0 (registry+https:/rust-lang/crates.io-index)" = "7bad48618fdb549078c333a7a8528acb57af271d0433bdecd523eb620628364e"
"checksum font-kit 0.6.0 (registry+https:/rust-lang/crates.io-index)" = "8f953474ebbe3460775ed2da52435477cc029493284d6ceb635598586a2c6298"
"checksum foreign-types 0.3.2 (registry+https:/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
"checksum foreign-types-shared 0.1.1 (registry+https:/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
"checksum freetype 0.4.1 (registry+https:/rust-lang/crates.io-index)" = "11926b2b410b469d0e9399eca4cbbe237a9ef02176c485803b29216307e8e028"
"checksum fuchsia-cprng 0.1.1 (registry+https:/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
"checksum fxhash 0.2.1 (registry+https:/rust-lang/crates.io-index)" = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
"checksum getrandom 0.1.14 (registry+https:/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
"checksum gif 0.10.3 (registry+https:/rust-lang/crates.io-index)" = "471d90201b3b223f3451cd4ad53e34295f16a1df17b1edf3736d47761c3981af"
"checksum gl 0.14.0 (registry+https:/rust-lang/crates.io-index)" = "a94edab108827d67608095e269cf862e60d920f144a5026d3dbcfd8b877fb404"
"checksum gl_generator 0.11.0 (registry+https:/rust-lang/crates.io-index)" = "39a23d5e872a275135d66895d954269cf5e8661d234eb1c2480f4ce0d586acbd"
"checksum gl_generator 0.13.1 (registry+https:/rust-lang/crates.io-index)" = "ca98bbde17256e02d17336a6bdb5a50f7d0ccacee502e191d3e3d0ec2f96f84a"
"checksum gl_generator 0.14.0 (registry+https:/rust-lang/crates.io-index)" = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
"checksum gleam 0.7.0 (registry+https:/rust-lang/crates.io-index)" = "9ea4f9ba7411ae3f00516401fb811b4f4f37f5c926357f2a033d27f96b74c849"
"checksum half 1.5.0 (registry+https:/rust-lang/crates.io-index)" = "f36b5f248235f45773d4944f555f83ea61fe07b18b561ccf99d7483d7381e54d"
"checksum harfbuzz 0.3.1 (registry+https:/rust-lang/crates.io-index)" = "46f7426266a5ece3e49eae6f48e602c0f8c39917354a847eac9c06437dcde8da"
"checksum harfbuzz-sys 0.3.4 (registry+https:/rust-lang/crates.io-index)" = "212d74cab8498b2d15700b694fb38f77562869d05e1f8b602dd05221a1ca2d63"
"checksum hashbrown 0.7.2 (registry+https:/rust-lang/crates.io-index)" = "96282e96bfcd3da0d3aa9938bedf1e50df3269b6db08b4876d2da0bb1a0841cf"
"checksum hermit-abi 0.1.12 (registry+https:/rust-lang/crates.io-index)" = "61565ff7aaace3525556587bd2dc31d4a07071957be715e63ce7b1eccf51a8f4"
"checksum image 0.23.4 (registry+https:/rust-lang/crates.io-index)" = "9117f4167a8f21fa2bb3f17a652a760acd7572645281c98e3b612a26242c96ee"
"checksum inflate 0.4.5 (registry+https:/rust-lang/crates.io-index)" = "1cdb29978cc5797bd8dcc8e5bf7de604891df2a8dc576973d71a281e916db2ff"
"checksum instant 0.1.3 (registry+https:/rust-lang/crates.io-index)" = "f7152d2aed88aa566e7a342250f21ba2222c1ae230ad577499dbfa3c18475b80"
"checksum io-surface 0.12.1 (registry+https:/rust-lang/crates.io-index)" = "2279a6faecd06034f88218f77f7a767693e0957bce0323a96d92747e2760b445"
"checksum itoa 0.4.5 (registry+https:/rust-lang/crates.io-index)" = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e"
"checksum jpeg-decoder 0.1.19 (registry+https:/rust-lang/crates.io-index)" = "5b47b4c4e017b01abdc5bcc126d2d1002e5a75bbe3ce73f9f4f311a916363704"
"checksum js-sys 0.3.39 (registry+https:/rust-lang/crates.io-index)" = "fa5a448de267e7358beaf4a5d849518fe9a0c13fce7afd44b06e68550e5562a7"
"checksum khronos_api 3.1.0 (registry+https:/rust-lang/crates.io-index)" = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
"checksum lazy_static 1.4.0 (registry+https:/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
"checksum leak 0.1.2 (registry+https:/rust-lang/crates.io-index)" = "bd100e01f1154f2908dfa7d02219aeab25d0b9c7fa955164192e3245255a0c73"
"checksum leaky-cow 0.1.1 (registry+https:/rust-lang/crates.io-index)" = "40a8225d44241fd324a8af2806ba635fc7c8a7e9a7de4d5cf3ef54e71f5926fc"
"checksum libc 0.2.69 (registry+https:/rust-lang/crates.io-index)" = "99e85c08494b21a9054e7fe1374a732aeadaff3980b6990b94bfd3a70f690005"
"checksum libloading 0.5.2 (registry+https:/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"
"checksum line_drawing 0.7.0 (registry+https:/rust-lang/crates.io-index)" = "5cc7ad3d82c845bdb5dde34ffdcc7a5fb4d2996e1e1ee0f19c33bc80e15196b9"
"checksum lock_api 0.3.4 (registry+https:/rust-lang/crates.io-index)" = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
"checksum log 0.4.8 (registry+https:/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
"checksum lyon_geom 0.15.2 (registry+https:/rust-lang/crates.io-index)" = "575bca30bcbaea23a6f544a9e8b57b12ceb3611ea3fd4f5779a1d6705b4672b7"
"checksum lzw 0.10.0 (registry+https:/rust-lang/crates.io-index)" = "7d947cbb889ed21c2a84be6ffbaebf5b4e0f4340638cba0444907e38b56be084"
"checksum mach 0.3.2 (registry+https:/rust-lang/crates.io-index)" = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
"checksum malloc_buf 0.0.6 (registry+https:/rust-lang/crates.io-index)" = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
"checksum matches 0.1.8 (registry+https:/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
"checksum maybe-uninit 2.0.0 (registry+https:/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
"checksum memmap 0.7.0 (registry+https:/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
"checksum memoffset 0.5.4 (registry+https:/rust-lang/crates.io-index)" = "b4fc2c02a7e374099d4ee95a193111f72d2110197fe200272371758f6c3643d8"
"checksum minifb 0.15.3 (git+https:/FloVanGH/rust_minifb?branch=redox_unix)" = "<none>"
"checksum miniz_oxide 0.3.6 (registry+https:/rust-lang/crates.io-index)" = "aa679ff6578b1cddee93d7e82e263b94a575e0bfced07284eb0c037c1d2416a5"
"checksum nix 0.14.1 (registry+https:/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce"
"checksum nix 0.17.0 (registry+https:/rust-lang/crates.io-index)" = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
"checksum num 0.1.42 (registry+https:/rust-lang/crates.io-index)" = "4703ad64153382334aa8db57c637364c322d3372e097840c72000dabdcf6156e"
"checksum num-integer 0.1.42 (registry+https:/rust-lang/crates.io-index)" = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba"
"checksum num-iter 0.1.40 (registry+https:/rust-lang/crates.io-index)" = "dfb0800a0291891dd9f4fe7bd9c19384f98f7fbe0cd0f39a2c6b88b9868bbc00"
"checksum num-rational 0.2.4 (registry+https:/rust-lang/crates.io-index)" = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
"checksum num-traits 0.2.11 (registry+https:/rust-lang/crates.io-index)" = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096"
"checksum num_cpus 1.13.0 (registry+https:/rust-lang/crates.io-index)" = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
"checksum objc 0.2.7 (registry+https:/rust-lang/crates.io-index)" = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
"checksum objc-foundation 0.1.1 (registry+https:/rust-lang/crates.io-index)" = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
"checksum objc_id 0.1.1 (registry+https:/rust-lang/crates.io-index)" = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
"checksum once_cell 1.3.1 (registry+https:/rust-lang/crates.io-index)" = "b1c601810575c99596d4afc46f78a678c80105117c379eb3650cf99b8a21ce5b"
"checksum orbclient 0.3.27 (registry+https:/rust-lang/crates.io-index)" = "f8b18f57ab94fbd058e30aa57f712ec423c0bb7403f8493a6c58eef0c36d9402"
"checksum ordered-float 1.0.2 (registry+https:/rust-lang/crates.io-index)" = "18869315e81473c951eb56ad5558bbc56978562d3ecfb87abb7a1e944cea4518"
"checksum parking_lot 0.9.0 (registry+https:/rust-lang/crates.io-index)" = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
"checksum parking_lot_core 0.6.2 (registry+https:/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
"checksum pathfinder_canvas 0.5.0 (git+https:/servo/pathfinder.git)" = "<none>"
"checksum pathfinder_color 0.5.0 (git+https:/servo/pathfinder.git)" = "<none>"
"checksum pathfinder_content 0.5.0 (git+https:/servo/pathfinder.git)" = "<none>"
"checksum pathfinder_geometry 0.5.1 (git+https:/servo/pathfinder.git)" = "<none>"
"checksum pathfinder_geometry 0.5.1 (registry+https:/rust-lang/crates.io-index)" = "0b7b7e7b4ea703700ce73ebf128e1450eb69c3a8329199ffbfb9b2a0418e5ad3"
"checksum pathfinder_gl 0.5.0 (git+https:/servo/pathfinder.git)" = "<none>"
"checksum pathfinder_gpu 0.5.0 (git+https:/servo/pathfinder.git)" = "<none>"
"checksum pathfinder_renderer 0.5.0 (git+https:/servo/pathfinder.git)" = "<none>"
"checksum pathfinder_resources 0.5.0 (git+https:/servo/pathfinder.git)" = "<none>"
"checksum pathfinder_simd 0.5.0 (git+https:/servo/pathfinder.git)" = "<none>"
"checksum pathfinder_simd 0.5.0 (registry+https:/rust-lang/crates.io-index)" = "b451513912d6b3440e443aa75a73ab22203afedc4a90df8526d008c0f86f7cb3"
"checksum pathfinder_text 0.5.0 (git+https:/servo/pathfinder.git)" = "<none>"
"checksum pathfinder_ui 0.5.0 (git+https:/servo/pathfinder.git)" = "<none>"
"checksum percent-encoding 2.1.0 (registry+https:/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
"checksum phf 0.7.24 (registry+https:/rust-lang/crates.io-index)" = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18"
"checksum phf_codegen 0.7.24 (registry+https:/rust-lang/crates.io-index)" = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e"
"checksum phf_generator 0.7.24 (registry+https:/rust-lang/crates.io-index)" = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662"
"checksum phf_shared 0.7.24 (registry+https:/rust-lang/crates.io-index)" = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0"
"checksum pkg-config 0.3.17 (registry+https:/rust-lang/crates.io-index)" = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677"
"checksum png 0.15.3 (registry+https:/rust-lang/crates.io-index)" = "ef859a23054bbfee7811284275ae522f0434a3c8e7f4b74bd4a35ae7e1c4a283"
"checksum png 0.16.3 (registry+https:/rust-lang/crates.io-index)" = "2c68a431ed29933a4eb5709aca9800989758c97759345860fa5db3cfced0b65d"
"checksum ppv-lite86 0.2.6 (registry+https:/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
"checksum proc-macro2 0.4.30 (registry+https:/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
"checksum proc-macro2 1.0.12 (registry+https:/rust-lang/crates.io-index)" = "8872cf6f48eee44265156c111456a700ab3483686b3f96df4cf5481c89157319"
"checksum procedural-masquerade 0.1.6 (registry+https:/rust-lang/crates.io-index)" = "9a1574a51c3fd37b26d2c0032b649d08a7d51d4cca9c41bbc5bf7118fa4509d0"
"checksum quote 0.3.15 (registry+https:/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
"checksum quote 0.6.13 (registry+https:/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
"checksum quote 1.0.4 (registry+https:/rust-lang/crates.io-index)" = "4c1f4b0efa5fc5e8ceb705136bfee52cfdb6a4e3509f770b478cd6ed434232a7"
"checksum rand 0.6.5 (registry+https:/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
"checksum rand 0.7.3 (registry+https:/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
"checksum rand_chacha 0.1.1 (registry+https:/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
"checksum rand_chacha 0.2.2 (registry+https:/rust-lang/crates.io-index)" = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
"checksum rand_core 0.3.1 (registry+https:/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
"checksum rand_core 0.4.2 (registry+https:/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
"checksum rand_core 0.5.1 (registry+https:/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
"checksum rand_hc 0.1.0 (registry+https:/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
"checksum rand_hc 0.2.0 (registry+https:/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
"checksum rand_isaac 0.1.1 (registry+https:/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
"checksum rand_jitter 0.1.4 (registry+https:/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
"checksum rand_os 0.1.3 (registry+https:/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
"checksum rand_pcg 0.1.2 (registry+https:/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
"checksum rand_xorshift 0.1.1 (registry+https:/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
"checksum raqote 0.7.14 (registry+https:/rust-lang/crates.io-index)" = "5e8400fa875bc4d584d9145cef72074df4d51d106dcc52678d4bf4214ba52eae"
"checksum raw-window-handle 0.3.3 (registry+https:/rust-lang/crates.io-index)" = "0a441a7a6c80ad6473bd4b74ec1c9a4c951794285bf941c2126f607c72e48211"
"checksum rayon 1.3.0 (registry+https:/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098"
"checksum rayon-core 1.7.0 (registry+https:/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9"
"checksum rdrand 0.4.0 (registry+https:/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
"checksum redox_syscall 0.1.56 (registry+https:/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
"checksum redox_users 0.3.4 (registry+https:/rust-lang/crates.io-index)" = "09b23093265f8d200fa7b4c2c76297f47e681c655f6f1285a8780d6a022f7431"
"checksum remove_dir_all 0.5.2 (registry+https:/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
"checksum ron 0.5.1 (registry+https:/rust-lang/crates.io-index)" = "2ece421e0c4129b90e4a35b6f625e472e96c552136f5093a2f4fa2bbb75a62d5"
"checksum rust-argon2 0.7.0 (registry+https:/rust-lang/crates.io-index)" = "2bc8af4bda8e1ff4932523b94d3dd20ee30a87232323eda55903ffd71d2fb017"
"checksum rustc-demangle 0.1.16 (registry+https:/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
"checksum rustc_version 0.2.3 (registry+https:/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
"checksum rusttype 0.7.9 (registry+https:/rust-lang/crates.io-index)" = "310942406a39981bed7e12b09182a221a29e0990f3e7e0c971f131922ed135d5"
"checksum rusttype 0.8.3 (registry+https:/rust-lang/crates.io-index)" = "9f61411055101f7b60ecf1041d87fb74205fb20b0c7a723f07ef39174cf6b4c0"
"checksum ryu 1.0.4 (registry+https:/rust-lang/crates.io-index)" = "ed3d612bc64430efeb3f7ee6ef26d590dce0c43249217bddc62112540c7941e1"
"checksum same-file 1.0.6 (registry+https:/rust-lang/crates.io-index)" = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
"checksum scoped_threadpool 0.1.9 (registry+https:/rust-lang/crates.io-index)" = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
"checksum scopeguard 1.1.0 (registry+https:/rust-lang/crates.io-index)" = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
"checksum sdl2 0.32.2 (registry+https:/rust-lang/crates.io-index)" = "d051a07231e303f5f719da78cb6f7394f6d5b54f733aef5b0b447804a83edd7b"
"checksum sdl2-sys 0.32.6 (registry+https:/rust-lang/crates.io-index)" = "34e71125077d297d57e4c1acfe8981b5bdfbf5a20e7b589abfdcb33bf1127f86"
"checksum semver 0.9.0 (registry+https:/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
"checksum semver-parser 0.7.0 (registry+https:/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
"checksum serde 1.0.106 (registry+https:/rust-lang/crates.io-index)" = "36df6ac6412072f67cf767ebbde4133a5b2e88e76dc6187fa7104cd16f783399"
"checksum serde_derive 1.0.106 (registry+https:/rust-lang/crates.io-index)" = "9e549e3abf4fb8621bd1609f11dfc9f5e50320802273b12f3811a67e6716ea6c"
"checksum serde_json 1.0.52 (registry+https:/rust-lang/crates.io-index)" = "a7894c8ed05b7a3a279aeb79025fdec1d3158080b75b98a08faf2806bb799edd"
"checksum servo-fontconfig 0.4.0 (registry+https:/rust-lang/crates.io-index)" = "a088f8d775a5c5314aae09bd77340bc9c67d72b9a45258be34c83548b4814cd9"
"checksum servo-fontconfig-sys 4.0.9 (registry+https:/rust-lang/crates.io-index)" = "62b3e166450f523f4db06c14f02a2d39e76d49b5d8cbd224338d93e3595c156c"
"checksum servo-freetype-sys 4.0.5 (registry+https:/rust-lang/crates.io-index)" = "2c4ccb6d0d32d277d3ef7dea86203d8210945eb7a45fba89dd445b3595dd0dfc"
"checksum sha1 0.6.0 (registry+https:/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
"checksum siphasher 0.2.3 (registry+https:/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac"
"checksum skribo 0.1.0 (registry+https:/rust-lang/crates.io-index)" = "e6e9e713ecb4b6d3047428d060aa46cf4abd1109a961da245359e8f88a529d16"
"checksum smallvec 0.6.13 (registry+https:/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
"checksum smallvec 1.4.0 (registry+https:/rust-lang/crates.io-index)" = "c7cb5678e1615754284ec264d9bb5b4c27d2018577fd90ac0ceb578591ed5ee4"
"checksum smithay-client-toolkit 0.4.6 (registry+https:/rust-lang/crates.io-index)" = "2ccb8c57049b2a34d2cc2b203fa785020ba0129d31920ef0d317430adaf748fa"
"checksum spin_sleep 0.3.7 (registry+https:/rust-lang/crates.io-index)" = "891836ef5f8a5b9678938d34d75391a3794267806482105ffcd363271980c10c"
"checksum static_assertions 1.1.0 (registry+https:/rust-lang/crates.io-index)" = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
"checksum stb_truetype 0.3.1 (registry+https:/rust-lang/crates.io-index)" = "f77b6b07e862c66a9f3e62a07588fee67cd90a9135a2b942409f195507b4fb51"
"checksum stdweb 0.4.20 (registry+https:/rust-lang/crates.io-index)" = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
"checksum stdweb-derive 0.5.3 (registry+https:/rust-lang/crates.io-index)" = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
"checksum stdweb-internal-macros 0.2.9 (registry+https:/rust-lang/crates.io-index)" = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
"checksum stdweb-internal-runtime 0.1.5 (registry+https:/rust-lang/crates.io-index)" = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
"checksum surfman 0.2.0 (registry+https:/rust-lang/crates.io-index)" = "d28b4931b29b2c65fcce61898d6b4dbae2337a60308176c2d5cbff0913740d4a"
"checksum sw-composite 0.7.8 (registry+https:/rust-lang/crates.io-index)" = "4d6f48c48b3c9694cc69663c891e5fbcf20437dd377e52221491816778e28184"
"checksum syn 0.11.11 (registry+https:/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad"
"checksum syn 1.0.19 (registry+https:/rust-lang/crates.io-index)" = "e8e5aa70697bb26ee62214ae3288465ecec0000f05182f039b477001f08f5ae7"
"checksum synom 0.11.3 (registry+https:/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6"
"checksum tempfile 3.1.0 (registry+https:/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
"checksum tiff 0.4.0 (registry+https:/rust-lang/crates.io-index)" = "002351e428db1eb1d8656d4ca61947c3519ac3191e1c804d4600cd32093b77ad"
"checksum time 0.1.42 (git+https://gitlab.redox-os.org/redox-os/time?branch=redox-unix)" = "<none>"
"checksum time-point 0.1.1 (registry+https:/rust-lang/crates.io-index)" = "06535c958d6abe68dc4b4ef9e6845f758fc42fe463d0093d0aca40254f03fb14"
"checksum typed-arena 2.0.1 (registry+https:/rust-lang/crates.io-index)" = "0685c84d5d54d1c26f7d3eb96cd41550adb97baed141a761cf335d3d33bcd0ae"
"checksum unicode-normalization 0.1.12 (registry+https:/rust-lang/crates.io-index)" = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4"
"checksum unicode-xid 0.0.4 (registry+https:/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"
"checksum unicode-xid 0.1.0 (registry+https:/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
"checksum unicode-xid 0.2.0 (registry+https:/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
"checksum vec_map 0.8.2 (registry+https:/rust-lang/crates.io-index)" = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
"checksum vek 0.10.4 (registry+https:/rust-lang/crates.io-index)" = "4e44defd4e0c629bdc842e5d180dda428b3abd2c6b0c7e1fced8c718f65d5f77"
"checksum void 1.0.2 (registry+https:/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
"checksum walkdir 2.3.1 (registry+https:/rust-lang/crates.io-index)" = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
"checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https:/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
"checksum wasm-bindgen 0.2.62 (registry+https:/rust-lang/crates.io-index)" = "e3c7d40d09cdbf0f4895ae58cf57d92e1e57a9dd8ed2e8390514b54a47cc5551"
"checksum wasm-bindgen-backend 0.2.62 (registry+https:/rust-lang/crates.io-index)" = "c3972e137ebf830900db522d6c8fd74d1900dcfc733462e9a12e942b00b4ac94"
"checksum wasm-bindgen-macro 0.2.62 (registry+https:/rust-lang/crates.io-index)" = "2cd85aa2c579e8892442954685f0d801f9129de24fa2136b2c6a539c76b65776"
"checksum wasm-bindgen-macro-support 0.2.62 (registry+https:/rust-lang/crates.io-index)" = "8eb197bd3a47553334907ffd2f16507b4f4f01bbec3ac921a7719e0decdfe72a"
"checksum wasm-bindgen-shared 0.2.62 (registry+https:/rust-lang/crates.io-index)" = "a91c2916119c17a8e316507afaaa2dd94b47646048014bbdf6bef098c1bb58ad"
"checksum wayland-client 0.21.13 (registry+https:/rust-lang/crates.io-index)" = "49963e5f9eeaf637bfcd1b9f0701c99fd5cd05225eb51035550d4272806f2713"
"checksum wayland-client 0.25.0 (registry+https:/rust-lang/crates.io-index)" = "a42cb608953ec8e132c7f53fde722cca9bfbf8b2071d685dbbb8df2b567fee8b"
"checksum wayland-commons 0.21.13 (registry+https:/rust-lang/crates.io-index)" = "40c08896768b667e1df195d88a62a53a2d1351a1ed96188be79c196b35bb32ec"
"checksum wayland-commons 0.25.0 (registry+https:/rust-lang/crates.io-index)" = "8caa2f106138cf71358c6a9e84468e4406069cec93cbd6dbfce92225fc175932"
"checksum wayland-protocols 0.21.13 (registry+https:/rust-lang/crates.io-index)" = "4afde2ea2a428eee6d7d2c8584fdbe8b82eee8b6c353e129a434cd6e07f42145"
"checksum wayland-protocols 0.25.0 (registry+https:/rust-lang/crates.io-index)" = "f784a990d5fa6d846fa93eb8d3bb744ff1e6ec60c7f785b0a0ee2f1a1f20bee9"
"checksum wayland-scanner 0.21.13 (registry+https:/rust-lang/crates.io-index)" = "bf3828c568714507315ee425a9529edc4a4aa9901409e373e9e0027e7622b79e"
"checksum wayland-scanner 0.25.0 (registry+https:/rust-lang/crates.io-index)" = "f45ddc08a8078f3efa96b5f413268cc9c53b30712891de081fbc1d5846fbc736"
"checksum wayland-sys 0.21.13 (registry+https:/rust-lang/crates.io-index)" = "520ab0fd578017a0ee2206623ba9ef4afe5e8f23ca7b42f6acfba2f4e66b1628"
"checksum wayland-sys 0.24.1 (registry+https:/rust-lang/crates.io-index)" = "537500923d50be11d95a63c4cb538145e4c82edf61296b7debc1f94a1a6514ed"
"checksum wayland-sys 0.25.0 (registry+https:/rust-lang/crates.io-index)" = "80f9fc64f9045ad5ff491886a9460437655353e8be73c1b3f29f569342553319"
"checksum web-sys 0.3.39 (registry+https:/rust-lang/crates.io-index)" = "8bc359e5dd3b46cb9687a051d50a2fdd228e4ba7cf6fcf861a5365c3d671a642"
"checksum winapi 0.3.8 (registry+https:/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https:/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
"checksum winapi-util 0.1.5 (registry+https:/rust-lang/crates.io-index)" = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https:/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
"checksum winit 0.19.3 (registry+https:/rust-lang/crates.io-index)" = "7d0da905e61ae52d55c5ca6f8bea1e09daf5e325b6c77b0947c65a5179b49f5f"
"checksum wio 0.2.2 (registry+https:/rust-lang/crates.io-index)" = "5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5"
"checksum x11 2.18.2 (registry+https:/rust-lang/crates.io-index)" = "77ecd092546cb16f25783a5451538e73afc8d32e242648d54f4ae5459ba1e773"
"checksum x11-dl 2.18.5 (registry+https:/rust-lang/crates.io-index)" = "2bf981e3a5b3301209754218f962052d4d9ee97e478f4d26d4a6eced34c1fef8"
"checksum xdg 2.2.0 (registry+https:/rust-lang/crates.io-index)" = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57"
"checksum xml-rs 0.8.3 (registry+https:/rust-lang/crates.io-index)" = "b07db065a5cf61a7e4ba64f29e67db906fb1787316516c4e6e5ff0fea1efcd8a"

@pcwalton
Copy link
Contributor

pcwalton commented May 8, 2020

Hmm, so I'm really confused as to what is happening here… it looks like perhaps font-kit and skribo are using a different version of pathfinder_geometry? Does cargo update -p pathfinder_geometry do anything?

You're using pathfinder_geometry from crates.io, right?

@FloVanGH
Copy link
Author

FloVanGH commented May 8, 2020

cargo update does not help. I use it from git.

@pcwalton
Copy link
Contributor

pcwalton commented May 8, 2020

Ah, that's the issue then. You need to use Cargo overrides because skribo and font-kit use pathfinder_geometry from crates.io.

This is what Pathfinder does in its Cargo.toml:

[patch.crates-io]
pathfinder_geometry = { path = "geometry" }
pathfinder_simd = { path = "simd" }

@FloVanGH
Copy link
Author

FloVanGH commented May 9, 2020

Ok thank you for the hint. Tried also the crates version and it works, thank you 🙂.

@FloVanGH FloVanGH closed this as completed May 9, 2020
@Firstbober
Copy link

Hey, I have the same problem, overrode pathfinder_geometry and pathfinder_simd with git repository but to no avail. Anyone fixed this without switching to crates.io version?

@s3bk
Copy link
Collaborator

s3bk commented Nov 20, 2021

@Firstbober Try adding patches for all pathfinder crates:

[path.pathfinder_gpu]
pathfinder_gpu = { git = "https:/servo/pathfinder" }
[path.pathfinder_content]
pathfinder_content = { git = "https:/servo/pathfinder" }
[path.pathfinder_color]
pathfinder_color = { git = "https:/servo/pathfinder" }
[path.pathfinder_geometry]
pathfinder_geometry = { git = "https:/servo/pathfinder" }
[path.pathfinder_renderer]
pathfinder_renderer = { git = "https:/servo/pathfinder" }
[path.pathfinder_resources]
pathfinder_resources = { git = "https:/servo/pathfinder" }
[path.pathfinder_simd]
pathfinder_simd = { git = "https:/servo/pathfinder" }

@Firstbober
Copy link

Yea, these patches worked, thanks!

@DraftedDev
Copy link

Hi, I still experience this issue.
I am using the patch section described above...

[patch.crates-io]
pathfinder_gpu = { git = "https:/servo/pathfinder" }
pathfinder_content = { git = "https:/servo/pathfinder" }
pathfinder_color = { git = "https:/servo/pathfinder" }
pathfinder_geometry = { git = "https:/servo/pathfinder" }
pathfinder_renderer = { git = "https:/servo/pathfinder" }
pathfinder_resources = { git = "https:/servo/pathfinder" }
pathfinder_simd = { git = "https:/servo/pathfinder" }

But now I get an ugly linker error (something with harfbuzz):

error: linking with `link.exe` failed: exit code: 1181
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Windows\\TEMP\\rustczmG9W9\\symbols.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.102gdneodrkxw1ln.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.11ct3agzg4ywjuip.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.11pfhrcs64jb34ok.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.12mmzjmhr3tyiif6.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.12pwi13ktx66f7i7.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.134km6d9lly1f2n0.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.154yu1wk13gzjpuc.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.15b5i6rzkpnccx8u.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.15wy6vae64k4ed8p.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.15x6a33wvie9igsf.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.16gyvf6cng9rfqw.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.18el104k7n78va9d.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.19jmem8pw5vmpchy.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1a2pbezk94hm7slc.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1akgzuysib878bt4.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1b8tzn305gckoxdf.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1c04yo40xfnety5i.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1dkc4loiot8t6d8v.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1dqtz9v1ub5wluhv.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1drhdkturm3bt1g.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1e42qzm4yscfqgfm.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1eprf10idq52pxtu.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1ezstpfk94w65z00.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1h73pp94xz2cxt6r.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1htvjoszdr5ueas3.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1ja3sak9no8brmaw.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1jh7hz4j16ezhbvd.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1ke0y8yv2bumetpv.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1l68uyyxabii266t.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1lnqqq6t84ln0ydi.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1lsopejt4fqaaq9j.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1mdfotvsa0rcpnhp.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1rnilcmjh14rf23n.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1ulxq79y342qx80d.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1upf2fhmqr645117.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1v1o7yj9gub29e7f.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1xq30k5ix7j75d6d.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1y87suiv7ddp86w.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1ytg5tnpf3r6gvcb.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1zrxy6asv543qz7c.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.1zx0eztdt36f8y81.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2091092qqx7j8emq.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.20xnohwwqx18w8uf.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.210kxv7t5stdhk7o.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2201rwn0pb0bo09z.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.22w4gz003ap3wl4u.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.22x8uo3py3530150.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.238d4g84b3jm3t47.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.24iwj0tljvkj6jpo.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.24oso185kru8157e.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.27y90vz572ctzkpa.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.280ixb9p8qdjcbmk.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2cnr7zwmrteez93x.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2dt4bgrkvsyxqgjg.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2ejubnhxui7dw04z.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2ekr0uwr3vtd13j2.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2et5yxuys4esddui.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2exbx47hbnpfl7x3.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2f5wfwf6hpehq92.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2flcm91qhu9g3z0a.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2g7kpp5yghevw18k.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2iat0aolk7s4r4g1.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2ickc396xfiov8kd.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2idj2pl1x575q8fg.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2im47sm5vt7c1ckv.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2in2jtkt4l2ien89.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2itcjjqvpbvunzt5.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2kkjehip0acrfijk.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2kr5tv4ro34mmolx.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2lmkx3ijgkhgi1po.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2naut2cxgic7bn4v.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2ne4esligj37uie3.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2pn4m1kwaguyr3tu.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2q2o4iepos97xpk5.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2romoic9f6k65yow.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2sqltzcqurgvcxfz.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2t90ywjrr2y7bjyk.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2u00lgd9guhu4xix.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2vo5srqkq65kfr6w.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2w382j9qqh5f5pwo.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2xdnk35yf47h2ldo.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2xrhs4g4pvoo5e6t.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2xvwd0jmgqe5qca5.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.2z86hqhy32n9gzqp.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.309hm0rnai86gw3r.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.341waddbbestcusj.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.34c0qibxwwjpe2pr.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.34ul3mppwnumftfv.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.34zkqiw6k6n5lonk.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.34zzv4zsdn6byk6r.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.35siccb262tvwcl6.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.36yn9qi143ntzr29.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.386ln4ddx86x3v9a.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.38dmpic5wq54iwlp.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.38kka37fq29kos1o.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.39sihdr0jf01sbv7.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.39xjs5lvpbk5c2z0.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3a0bvbzml4n0qn4z.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3cb8f7uvbfw258x8.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3cwd9rgypketialy.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3dc8zh7lupyxiwl7.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3ep3lrvvj7x46q8i.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3htwd8o2zbartgz5.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3i0cdfd6siqt5vxc.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3jzgcqhztz5wlx9a.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3ke8pbs0mq8wqlot.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3kjnhwcgemi66seq.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3lduqi5c4wwqxe1c.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3o1m7wx70oexwspb.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3otfj6ljv8xjwza5.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3pbe3oiijpzsmk09.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3pgfgw4bhw5hrxjk.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3qkccujjy40mgujx.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3sdju340aqjjgv7.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3tmfz1v6rqs61w2r.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3uvysmi51jt0x236.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3w7zc5jx4j9cgjg9.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3w90pjnnmwuxkgne.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3wemiegv9vfgzr2y.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3x146mo3acl0c7gv.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3y5upfolls6499ek.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3y9cxo2cqrfcvwlk.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3yo5wsl30bg7ckl5.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3zbos3al42ljgnp3.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3zkp4u20ul0wzz1k.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3zunfypcn7vojnbl.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.40zfkbbpym5mt35b.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.42qz3l5r4qlyiwtn.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.44a4ebzd3riebqmg.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.44xa43o8zexzyk1b.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4566ay89ub6bqxuj.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.456qa108ab0y1at0.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.457m8lpx4p3iawmy.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.469khauqka3a00qy.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.46vl6a8irsds25f5.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.47aafbb5u8i665w1.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.48x6qy3719ft18b7.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.492bcpnkkcp9mbkg.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4ahr27c621dcdl2.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4bdza1ipg11j8les.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4brdeq2f5q3df66k.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4dpchmf03wrxtmnv.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4e37srl2y62h0kpr.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4hw6iy97adjqbihi.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4i0lzlal2ak8yfhq.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4i6eyn7njgyxqu9e.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4i8craukra5nkuwu.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4kwolp1t0lwp35oc.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4m4klaz7nci7cyfh.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4n1juodzees285uo.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4od8kax2h9osfzfh.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4pl7ajgiix14appq.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4pxa2cxlmmy43tpn.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4qj3tsoeh0pox1c2.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4uhur3ebh99vc3qz.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4v13q8zo73ki3azp.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4wvtk69hcomcckfh.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4x040xjiq6a94w53.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4x1dbebwrfj78bzp.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4xidvn11gndkgrh3.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4xk3qlgghits124o.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4xv3xc21h5rzivks.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4ytz8619wgiwll4j.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4zkczfte4mfgzz1p.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.4zxqi5rnc4yydlrq.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.502ldp9vaqi76pt3.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.50ifenht0kebace3.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.50l7t2x0ex6rt86b.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.513amzfsm6kkj02o.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.52o9kggep9ta3r10.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.55dbkvsn6fc3u3v2.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.5674r2b83pgsn9xc.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.56knwre18get6d9k.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.58m4ubuln9ywoy6o.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.58ng0wygkp21rrqt.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.5ac9mp6xfn1wkmb0.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.5aralr8g26rr1rb7.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.5arfbz2jqlshultt.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.5bca9b1v43d3ad9p.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.5eymlq8chqq0nkm2.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.5g1hb5yq55sekkhn.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.5g7vcw1zc3yskew.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.5g9y16oip7f20jbl.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.5hyck1meqegvlzr.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.5m1g3bgytxqia4m.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.62gze7nc2dlz3yz.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.6p32tdqdwoq76d0.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.7ng73c66kgbz5wy.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.7xwna7byqer6381.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.8sz345nmgr109y0.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.adi4oig9wu3vzr0.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.bex7y94rbg75xgy.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.crxzsq5g0ey5hrv.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.dmcm1x1xjt1ilzk.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.ensvhb0lrjpntgd.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.fd2siidudouka86.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.hroero8pdf8tmdz.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.hwuct7u1surq29t.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.kl9smlx2xl371rs.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.leeja7srlwuxr15.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.mwn4la5j8ej6mp8.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.nc20ydwe4xkxoxv.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.nwyill5purb4g38.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.oig8n2ud1ijzmpc.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.puhpaee2zm70b3a.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.pz88hmr9ckcq9rc.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.qki4ke2o9mpt6tk.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.qkndnwch0r2zn2b.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.r64342acxb3ztug.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.rh5sich6im780kq.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.rx8gxto23yd9yh2.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.s3jcfesyyv900oi.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.ta722ef7gr9o3xt.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.wgme8m2yr5cajyq.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.wvmorgu87ryjuwe.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.x8x5ky1o41su8fv.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.xl5icaew8x2afp2.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.yhd8dj18qvbngp1.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.ynys3jn4zpppesq.rcgu.o" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.3w52pbvoie91c13i.rcgu.o" "/LIBPATH:C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps" "/LIBPATH:C:\\Users\\Mikail\\.cargo\\registry\\src\\index.crates.io-6f17d22bba15001f\\windows_x86_64_msvc-0.48.5\\lib" "/LIBPATH:C:/msys64/mingw64/bin/../lib" "/LIBPATH:C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libmay_core-3e45fe439dd9dfd7.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpathfinder_gl-5efa4054efe26b8d.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libgl-97de7457e0382de8.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libglutin-b90b3646f366fcc3.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libglutin_wgl_sys-29d27efeb88183d3.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\liblibloading-1101ccac8fc16b02.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libglutin_egl_sys-2ae8dc2802beccc6.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpathfinder_canvas-6834eead3fd83b82.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpathfinder_text-de260ba1cc4ca95f.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libskribo-7ca59aeef65b71b8.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libunicode_normalization-541932877f2f2daa.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libtinyvec-8bcdbcc87b35f6bd.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libtinyvec_macros-a5b8d8cc33ec45d4.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libharfbuzz-fd823ba72a95e985.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libharfbuzz_sys-7a552240805193c2.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libfont_kit-2cbed9faf91f6c28.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libfloat_ord-aeac0e3625c0abfa.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libwalkdir-b07edc8735bc6648.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libsame_file-5f265a9442705ca8.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libwinapi_util-660f59014e871a4d.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libdwrote-a602189cec35e6eb.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libwio-8a332b7e48f6c360.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libwinapi-c03a1965b5f4e167.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\liblibc-1a2742386cea9819.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpathfinder_renderer-3f3fb6aae99cc1ef.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpathfinder_ui-bddae49f4a6bad8a.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libserde_json-bda23300ea519137.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libitoa-1160b6422a351fbd.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libryu-5026afb9ce0dde44.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libhashbrown-aa2d46c40c130899.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libahash-202aee4c3902c237.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libserde-1df782a3fd9d780f.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libvec_map-5c11c87287921aba.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libbyte_slice_cast-4ef73d217e5b842a.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpathfinder_gpu-c93d640c0b1b645a.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpathfinder_resources-3d92b62d3bdbc737.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libhalf-d500c7feb42faa44.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libfxhash-308612af20bc9597.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libinstant-752db3dea17f7f34.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libcrossbeam_channel-e01962fe353db73b.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libmaybe_uninit-68a5c0c82bc8b8e2.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libcrossbeam_utils-1e67c514a2c67bcb.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\liblazy_static-379c6c9ceb006e86.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libcfg_if-0f5d418c3b0effa6.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\librayon-2de639f1366a4e86.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\librayon_core-de17907a81e205f1.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libcrossbeam_deque-cc106b249bc52b48.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libcrossbeam_epoch-f329cd513818b5e2.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libcrossbeam_utils-8b59615a3cdcbfbc.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libeither-c613c4c9870cb017.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpathfinder_content-829ceb9ceba9468b.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libimage-8bc441260a02887f.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libcolor_quant-e66bd2dfc4f09c58.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libnum_iter-da5a07a4a039d314.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libbytemuck-34a79809fe7b618b.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpng-525037e0e7705a35.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libminiz_oxide-9c7ccdd88836f936.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libcrc32fast-390593a591863647.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libcfg_if-fd3486bfba9b44a7.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libdeflate-1af40625a691287e.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libbyteorder-d7c5d3dcb859e580.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libadler32-ec756cc1d27b651e.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libnum_rational-20128a2d87791e1e.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libnum_integer-f0b7625d94b3cef4.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libnum_traits-e20d9d06b49dfbc8.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libsmallvec-f8177aa57872374e.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpathfinder_geometry-6f957ab3ff94dcf7.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libarrayvec-ad9fa7cd5d0ac183.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libbitflags-328ecab904d0935c.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libtaffy-bea04fc91296c2dc.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libgrid-8877a0b2ff79282a.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libslotmap-d19e7a680cecedec.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libwinit-f47d933e818fda5e.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libraw_window_handle-b52eb7b7de2dd764.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libcursor_icon-127d09b1520fe048.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libunicode_segmentation-b554a030df254dc5.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libonce_cell-d20b4003b6caba86.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libwindows_sys-4c86ea1a26b2ce57.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libwindows_targets-7d0de983e712e0e9.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libsmol_str-1033aa7f119a3daa.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libbitflags-732f30696269301b.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\liblog-b1ac4191c546c0ce.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpathfinder_color-bf6450a64abee753.rlib" "C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\deps\\libpathfinder_simd-2ef8069c3587596e.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libstd-37f809d55a4028c2.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libpanic_unwind-5275e7378a608cbc.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\librustc_demangle-6d37ce9e793737f0.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libstd_detect-f65e338a8d7b758e.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libhashbrown-6be25f581644e237.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\librustc_std_workspace_alloc-3bed8915f2af4b48.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libunwind-511089e9a3fe1773.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libcfg_if-99164f8878459c2d.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\liblibc-1b2fe7b84675670a.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\liballoc-f01f1b5b0462925e.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\librustc_std_workspace_core-747897f502f49f1a.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libcore-0a7d9524c210bd3d.rlib" "C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libcompiler_builtins-d0b7cd1e3991caf1.rlib" "opengl32.lib" "harfbuzz.lib" "advapi32.lib" "cfgmgr32.lib" "d2d1.lib" "dwrite.lib" "dxgi.lib" "gdi32.lib" "kernel32.lib" "msimg32.lib" "ole32.lib" "opengl32.lib" "user32.lib" "windowscodecs.lib" "winspool.lib" "legacy_stdio_definitions.lib" "windows.0.48.5.lib" "kernel32.lib" "advapi32.lib" "bcrypt.lib" "kernel32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "kernel32.lib" "ws2_32.lib" "kernel32.lib" "ntdll.lib" "kernel32.lib" "msvcrt.lib" "/NXCOMPAT" "/LIBPATH:C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib" "/OUT:C:\\Users\\Mikail\\Desktop\\Coding\\Projects\\Maycoon\\target\\debug\\examples\\hello_world.exe" "/OPT:REF,NOICF" "/DEBUG" "/NATVIS:C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:C:\\Users\\Mikail\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\etc\\libstd.natvis"
  = note: LINK : fatal error LNK1181: cannot open input file 'harfbuzz.lib'

@jayvdb
Copy link
Contributor

jayvdb commented Feb 14, 2024

@DraftedDev , that is a different problem, related to how this project and https:/servo/rust-harfbuzz/tree/main/harfbuzz-sys are interfacing together. Could you create a new issue for that. One solution to your problem would be to somehow activate the bundled feature at https:/servo/rust-harfbuzz/blob/main/harfbuzz/Cargo.toml#L28 whilst building pathfinder

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants