mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
56 lines
1.4 KiB
TOML
56 lines
1.4 KiB
TOML
[package]
|
|
name = "util"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
|
|
[lib]
|
|
name = "util"
|
|
path = "lib.rs"
|
|
|
|
# Disable doctests, because of linking issues with rustdoc. rustdoc compiles
|
|
# documentation tests with prefer-dynamic. This causes issues because rustc
|
|
# looks for -lazure, which does not exist (rust-azure is a dependency of
|
|
# rust-layers). This crate only has one documentation example anyway and it's
|
|
# imported from the rust-lang codebase.
|
|
# See https://github.com/rust-lang/rust/issues/21246
|
|
doctest = false
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.azure]
|
|
git = "https://github.com/servo/rust-azure"
|
|
features = ["plugins"]
|
|
|
|
[dependencies.js]
|
|
git = "https://github.com/servo/rust-mozjs"
|
|
|
|
[dependencies.layers]
|
|
git = "https://github.com/servo/rust-layers"
|
|
features = ["plugins"]
|
|
|
|
[dependencies.ipc-channel]
|
|
git = "https://github.com/servo/ipc-channel"
|
|
|
|
[dependencies]
|
|
app_units = {version = "0.1", features = ["plugins"]}
|
|
cssparser = { version = "0.4", features = [ "serde-serialization" ] }
|
|
log = "0.3"
|
|
bitflags = "0.3"
|
|
html5ever = { version = "0.2.1", features = ["unstable"] }
|
|
libc = "0.2"
|
|
rand = "0.3"
|
|
rustc-serialize = "0.3"
|
|
smallvec = "0.1"
|
|
num_cpus = "0.2.2"
|
|
num = "0.1.24"
|
|
euclid = {version = "0.4", features = ["plugins"]}
|
|
selectors = "0.2"
|
|
serde = "0.6"
|
|
serde_macros = "0.6"
|
|
string_cache = "0.2"
|
|
lazy_static = "0.1"
|
|
getopts = "0.2.11"
|
|
hyper = "0.7"
|
|
url = "0.5"
|
|
uuid = "0.1.17"
|