mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
* Remove packages that were moved to external repo
* Add workspace dependencies pointing to 2023-06-14 branch
* Fix servo-tidy.toml errors
* Update commit to include #31346
* Update commit to include servo/stylo#2
* Move css-properties.json lookup to target/doc/stylo
* Remove dependency on vendored mako in favour of pypi dependency
This also removes etc/ci/generate_workflow.py, which has been unused
since at least 9e71bd6a70
.
* Add temporary code to debug Windows test failures
* Fix failures on Windows due to custom target dir
* Update commit to include servo/stylo#3
* Fix license in tests/unit/style/build.rs
* Document how to build with local Stylo in Cargo.toml
47 lines
1.3 KiB
TOML
47 lines
1.3 KiB
TOML
[package]
|
|
name = "layout_thread_2013"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "layout_thread_2013"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
app_units = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
euclid = { workspace = true }
|
|
fnv = { workspace = true }
|
|
fxhash = { workspace = true }
|
|
gfx = { path = "../gfx" }
|
|
gfx_traits = { workspace = true }
|
|
histogram = "0.6.8"
|
|
ipc-channel = { workspace = true }
|
|
layout = { path = "../layout", package = "layout_2013" }
|
|
lazy_static = { workspace = true }
|
|
log = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
metrics = { path = "../metrics" }
|
|
msg = { workspace = true }
|
|
net_traits = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
profile_traits = { workspace = true }
|
|
rayon = { workspace = true }
|
|
script = { path = "../script" }
|
|
script_layout_interface = { workspace = true }
|
|
script_traits = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
servo_allocator = { path = "../allocator" }
|
|
servo_arc = { workspace = true }
|
|
servo_atoms = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
servo_url = { path = "../url" }
|
|
style = { workspace = true }
|
|
style_traits = { workspace = true }
|
|
time = { workspace = true }
|
|
url = { workspace = true }
|
|
webrender_api = { workspace = true }
|