mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
In order for stylo to be a separate crate, it needs to depend on less things from Servo. This change makes it so that stylo no longer depends on servo_url.
48 lines
1.4 KiB
TOML
48 lines
1.4 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" }
|
|
layout_traits = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
log = { workspace = true }
|
|
malloc_size_of = { path = "../malloc_size_of" }
|
|
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 = { path = "../servo_arc" }
|
|
servo_atoms = { path = "../atoms" }
|
|
servo_config = { path = "../config" }
|
|
servo_url = { path = "../url" }
|
|
style = { path = "../style" }
|
|
style_traits = { workspace = true }
|
|
time = { workspace = true }
|
|
url = { workspace = true }
|
|
webrender_api = { workspace = true }
|