mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
This is a step toward upgrading WebRender, which will be upgraded and patched in the `third_party` directory. This change vendors the current private branch of WebRender that we use and adds a `patches` directory which tracks the changes on top of the upstream WebRender commit described by third_party/webrender/patches/head.
23 lines
574 B
TOML
23 lines
574 B
TOML
[package]
|
|
name = "layout_traits"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "layout_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
crossbeam-channel = { workspace = true }
|
|
gfx = { path = "../gfx" }
|
|
ipc-channel = { workspace = true }
|
|
metrics = { path = "../metrics" }
|
|
msg = { path = "../msg" }
|
|
net_traits = { path = "../net_traits" }
|
|
profile_traits = { path = "../profile_traits" }
|
|
script_traits = { path = "../script_traits" }
|
|
servo_url = { path = "../url" }
|
|
webrender_api = { workspace = true }
|