mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
This will allow the compositor to properly chain scrolling requests up when a node has reached the extent of the scroll area. This fixes scrolling on servo.org.
48 lines
1.4 KiB
TOML
48 lines
1.4 KiB
TOML
[package]
|
|
name = "compositing"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "compositing"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
gl = ["gleam", "pixels"]
|
|
|
|
[dependencies]
|
|
canvas = { path = "../canvas" }
|
|
crossbeam-channel = { workspace = true }
|
|
embedder_traits = { path = "../embedder_traits" }
|
|
euclid = { workspace = true }
|
|
fnv = { workspace = true }
|
|
gfx_traits = { path = "../gfx_traits" }
|
|
gleam = { workspace = true, optional = true }
|
|
image = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
msg = { path = "../msg" }
|
|
net_traits = { path = "../net_traits" }
|
|
num-traits = { workspace = true }
|
|
pixels = { path = "../pixels", optional = true }
|
|
profile_traits = { path = "../profile_traits" }
|
|
script_traits = { path = "../script_traits" }
|
|
servo-media = { git = "https://github.com/servo/media" }
|
|
servo_geometry = { path = "../geometry" }
|
|
servo_url = { path = "../url" }
|
|
style_traits = { path = "../style_traits" }
|
|
time = { workspace = true }
|
|
webrender = { git = "https://github.com/servo/webrender", features = ["capture"] }
|
|
webrender_api = { git = "https://github.com/servo/webrender" }
|
|
webrender_surfman = { path = "../webrender_surfman" }
|
|
webxr = { git = "https://github.com/servo/webxr" }
|
|
|
|
[build-dependencies]
|
|
toml = "0.5"
|