mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
This is a small cleanup that moves and renames this class. The rename is simply because we are exposing a lot about the details of Servo's rendering in the API and it makes sense to start thinking about abstracting that away a bit. This also moves the struct to `gfx`, which does have an effect on Servo's dependency graph. This adds a new dependency on gfx to `compositing`, but `compositing` had a transitive dependency on gfx before through `canvas`.
27 lines
704 B
TOML
27 lines
704 B
TOML
[package]
|
|
name = "compositing_traits"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "compositing_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
canvas = { path = "../../canvas" }
|
|
crossbeam-channel = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
euclid = { workspace = true }
|
|
gfx_traits = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
log = { workspace = true }
|
|
msg = { workspace = true }
|
|
net_traits = { workspace = true }
|
|
script_traits = { workspace = true }
|
|
servo_url = { path = "../../url" }
|
|
style_traits = { workspace = true }
|
|
webrender_api = { workspace = true }
|