mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
86 lines
1.7 KiB
TOML
86 lines
1.7 KiB
TOML
[package]
|
|
name = "layout"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "layout"
|
|
path = "lib.rs"
|
|
|
|
[dependencies.azure]
|
|
git = "https://github.com/servo/rust-azure"
|
|
features = ["plugins"]
|
|
|
|
[dependencies.canvas]
|
|
path = "../canvas"
|
|
|
|
[dependencies.canvas_traits]
|
|
path = "../canvas_traits"
|
|
|
|
[dependencies.gfx]
|
|
path = "../gfx"
|
|
|
|
[dependencies.gfx_traits]
|
|
path = "../gfx_traits"
|
|
|
|
[dependencies.msg]
|
|
path = "../msg"
|
|
|
|
[dependencies.script]
|
|
path = "../script"
|
|
|
|
[dependencies.layout_traits]
|
|
path = "../layout_traits"
|
|
|
|
[dependencies.range]
|
|
path = "../range"
|
|
|
|
[dependencies.script_traits]
|
|
path = "../script_traits"
|
|
|
|
[dependencies.style]
|
|
path = "../style"
|
|
|
|
[dependencies.style_traits]
|
|
path = "../style_traits"
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.net_traits]
|
|
path = "../net_traits"
|
|
|
|
[dependencies.profile_traits]
|
|
path = "../profile_traits"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.ipc-channel]
|
|
git = "https://github.com/servo/ipc-channel"
|
|
|
|
[dependencies.webrender_traits]
|
|
git = "https://github.com/servo/webrender_traits"
|
|
|
|
[dependencies]
|
|
app_units = {version = "0.2.3", features = ["plugins"]}
|
|
bitflags = "0.3"
|
|
cssparser = {version = "0.5.4", features = ["heap_size", "serde-serialization"]}
|
|
euclid = {version = "0.6.2", features = ["plugins"]}
|
|
fnv = "1.0"
|
|
heapsize = "0.3.0"
|
|
heapsize_plugin = "0.1.2"
|
|
libc = "0.2"
|
|
log = "0.3"
|
|
rustc-serialize = "0.3"
|
|
selectors = {version = "0.5.1", features = ["heap_size"]}
|
|
serde = "0.6"
|
|
serde_json = "0.6"
|
|
serde_macros = "0.6"
|
|
smallvec = "0.1"
|
|
string_cache = {version = "0.2.10", features = ["heap_size"]}
|
|
time = "0.1"
|
|
unicode-bidi = "0.2"
|
|
unicode-script = { version = "0.1", features = ["harfbuzz"] }
|
|
url = {version = "0.5.5", features = ["heap_size"]}
|