mirror of
https://github.com/servo/servo.git
synced 2025-07-12 18:03:49 +01:00
Update to webrender 0.10.0 <!-- Please describe your changes on the following line: --> Changes necessary to build servor with webrender 0.10.0 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14286) <!-- Reviewable:end -->
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
name = "layout_thread"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "layout_thread"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
app_units = "0.3"
|
|
euclid = "0.10.1"
|
|
fnv = "1.0"
|
|
gfx = {path = "../gfx"}
|
|
gfx_traits = {path = "../gfx_traits"}
|
|
heapsize = "0.3.0"
|
|
heapsize_derive = "0.1"
|
|
ipc-channel = "0.5"
|
|
layout = {path = "../layout"}
|
|
layout_traits = {path = "../layout_traits"}
|
|
lazy_static = "0.2"
|
|
log = "0.3.5"
|
|
msg = {path = "../msg"}
|
|
net_traits = {path = "../net_traits"}
|
|
parking_lot = {version = "0.3.3", features = ["nightly"]}
|
|
plugins = {path = "../plugins"}
|
|
profile_traits = {path = "../profile_traits"}
|
|
rayon = "0.5"
|
|
script = {path = "../script"}
|
|
script_layout_interface = {path = "../script_layout_interface"}
|
|
script_traits = {path = "../script_traits"}
|
|
selectors = "0.15"
|
|
serde_derive = "0.8"
|
|
serde_json = "0.8"
|
|
servo_url = {path = "../url"}
|
|
style = {path = "../style"}
|
|
util = {path = "../util"}
|
|
|
|
[dependencies.webrender_traits]
|
|
git = "https://github.com/servo/webrender"
|
|
default_features = false
|
|
features = ["serde_derive", "ipc"]
|