mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
83 lines
1.5 KiB
TOML
83 lines
1.5 KiB
TOML
[package]
|
|
name = "layout"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
|
|
[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.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.clock_ticks]
|
|
git = "https://github.com/tomaka/clock_ticks"
|
|
|
|
[dependencies.ipc-channel]
|
|
git = "https://github.com/servo/ipc-channel"
|
|
|
|
[dependencies.url]
|
|
version = "0.2"
|
|
features = [ "serde_serialization" ]
|
|
|
|
[dependencies]
|
|
app_units = {version = "0.1", features = ["plugins"]}
|
|
cssparser = { version = "0.4", features = [ "serde-serialization" ] }
|
|
log = "0.3"
|
|
encoding = "0.2"
|
|
fnv = "1.0"
|
|
bitflags = "0.3"
|
|
rustc-serialize = "0.3"
|
|
libc = "0.1"
|
|
selectors = "0.2"
|
|
smallvec = "0.1"
|
|
string_cache = "0.2"
|
|
euclid = {version = "0.3", features = ["plugins"]}
|
|
serde = "0.6"
|
|
serde_macros = "0.6"
|
|
serde_json = "0.5"
|
|
unicode-bidi = "0.2"
|
|
unicode-script = { version = "0.1", features = ["harfbuzz"] }
|