mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
90 lines
1.6 KiB
TOML
90 lines
1.6 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.gfx]
|
|
path = "../gfx"
|
|
|
|
[dependencies.canvas]
|
|
path = "../canvas"
|
|
|
|
[dependencies.canvas_traits]
|
|
path = "../canvas_traits"
|
|
|
|
[dependencies.selectors]
|
|
git = "https://github.com/servo/rust-selectors"
|
|
|
|
[dependencies.geom]
|
|
git = "https://github.com/servo/rust-geom"
|
|
|
|
[dependencies.html5ever]
|
|
git = "https://github.com/servo/html5ever"
|
|
|
|
[dependencies.js]
|
|
git = "https://github.com/servo/rust-mozjs"
|
|
|
|
[dependencies.png]
|
|
git = "https://github.com/servo/rust-png"
|
|
|
|
[dependencies.string_cache]
|
|
git = "https://github.com/servo/string-cache"
|
|
|
|
[dependencies.string_cache_plugin]
|
|
git = "https://github.com/servo/string-cache"
|
|
|
|
[dependencies.url]
|
|
version = "0.2.33"
|
|
features = ["query_encoding"]
|
|
|
|
[dependencies.offscreen_gl_context]
|
|
git = "https://github.com/ecoal95/rust-offscreen-rendering-context"
|
|
|
|
[dependencies]
|
|
log = "*"
|
|
encoding = "0.2"
|
|
fnv = "1.0"
|
|
time = "0.1.12"
|
|
bitflags = "*"
|
|
rustc-serialize = "*"
|
|
libc = "*"
|
|
hyper = "0.5"
|
|
cssparser = "0.3.1"
|
|
unicase = "0.1"
|
|
num = "0.1.24"
|
|
websocket = "0.12"
|
|
uuid = "0.1.16"
|
|
smallvec = "0.1"
|