mirror of
https://github.com/servo/servo.git
synced 2025-07-01 20:43:39 +01:00
now using external ref_slice instead of the std version fixed #8695 Fixes #8695. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8787) <!-- Reviewable:end -->
91 lines
1.8 KiB
TOML
91 lines
1.8 KiB
TOML
[package]
|
|
name = "script"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "script"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
debugmozjs = ['js/debugmozjs']
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.msg]
|
|
path = "../msg"
|
|
|
|
[dependencies.net_traits]
|
|
path = "../net_traits"
|
|
|
|
[dependencies.profile_traits]
|
|
path = "../profile_traits"
|
|
|
|
[dependencies.script_traits]
|
|
path = "../script_traits"
|
|
|
|
[dependencies.devtools_traits]
|
|
path = "../devtools_traits"
|
|
|
|
[dependencies.style]
|
|
path = "../style"
|
|
|
|
[dependencies.style_traits]
|
|
path = "../style_traits"
|
|
|
|
[dependencies.canvas]
|
|
path = "../canvas"
|
|
|
|
[dependencies.canvas_traits]
|
|
path = "../canvas_traits"
|
|
|
|
[dependencies.js]
|
|
git = "https://github.com/servo/rust-mozjs"
|
|
|
|
[dependencies.offscreen_gl_context]
|
|
git = "https://github.com/ecoal95/rust-offscreen-rendering-context"
|
|
|
|
[dependencies.angle]
|
|
git = "https://github.com/ecoal95/angle"
|
|
branch = "servo"
|
|
|
|
[dependencies.ipc-channel]
|
|
git = "https://github.com/servo/ipc-channel"
|
|
|
|
[dependencies.xml5ever]
|
|
git = "https://github.com/Ygg01/xml5ever"
|
|
features = ["unstable"]
|
|
|
|
[dependencies]
|
|
app_units = {version = "0.1", features = ["plugins"]}
|
|
cssparser = { version = "0.4", features = [ "serde-serialization" ] }
|
|
log = "0.3"
|
|
encoding = "0.2"
|
|
fnv = "1.0"
|
|
hyper = { version = "0.7", features = [ "serde-serialization" ] }
|
|
time = "0.1.12"
|
|
bitflags = "0.3"
|
|
rustc-serialize = "0.3"
|
|
libc = "0.2"
|
|
unicase = "1.0"
|
|
num = "0.1.24"
|
|
websocket = "0.14.0"
|
|
uuid = "0.1.16"
|
|
smallvec = "0.1"
|
|
html5ever = { version = "0.2.1", features = ["unstable"] }
|
|
selectors = "0.2"
|
|
string_cache = { version = "0.2", features = ["unstable"] }
|
|
euclid = {version = "0.4", features = ["plugins"]}
|
|
tendril = "0.1.1"
|
|
rand = "0.3"
|
|
serde = "0.6"
|
|
caseless = "0.1.0"
|
|
image = "0.5.0"
|
|
url = "0.5"
|
|
ref_slice = "0.1.0"
|