mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
This is enough support for `<object>` to get Acid2 working. Co-authored-by: Oriol Brufau <obrufau@igalia.com>
54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
[package]
|
|
name = "layout_2020"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "layout_2020"
|
|
path = "lib.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
app_units = { workspace = true }
|
|
atomic_refcell = { workspace = true }
|
|
canvas_traits = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
cssparser = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
euclid = { workspace = true }
|
|
fnv = { workspace = true }
|
|
fxhash = { workspace = true }
|
|
gfx = { path = "../gfx" }
|
|
gfx_traits = { workspace = true }
|
|
html5ever = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
log = { workspace = true }
|
|
msg = { workspace = true }
|
|
net_traits = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
range = { path = "../range" }
|
|
rayon = { workspace = true }
|
|
script_layout_interface = { workspace = true }
|
|
script_traits = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
servo_arc = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
servo_geometry = { path = "../geometry" }
|
|
servo_url = { path = "../url" }
|
|
style = { workspace = true }
|
|
style_traits = { workspace = true }
|
|
unicode-script = { workspace = true }
|
|
unicode-segmentation = { workspace = true }
|
|
url = { workspace = true }
|
|
data-url = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
xi-unicode = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
lazy_static = { workspace = true }
|
|
quickcheck = "1"
|