mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
script: Disable our dependency in ffmpeg until the media madness is over <!-- Please describe your changes on the following line: --> r? @larsbergstrom --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors. <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12863) <!-- Reviewable:end -->
80 lines
2.2 KiB
TOML
80 lines
2.2 KiB
TOML
[package]
|
|
name = "script"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "script"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
debugmozjs = ['js/debugmozjs']
|
|
|
|
[build-dependencies]
|
|
cmake = "0.1"
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))'.dependencies]
|
|
tinyfiledialogs = {git = "https://github.com/jdm/tinyfiledialogs"}
|
|
|
|
[dependencies]
|
|
angle = {git = "https://github.com/servo/angle", branch = "servo"}
|
|
app_units = "0.3"
|
|
bitflags = "0.7"
|
|
canvas_traits = {path = "../canvas_traits"}
|
|
caseless = "0.1.0"
|
|
cookie = {version = "0.2.5", features = ["serialize-rustc"]}
|
|
cssparser = {version = "0.5.7", features = ["heap_size", "serde-serialization"]}
|
|
devtools_traits = {path = "../devtools_traits"}
|
|
encoding = "0.2"
|
|
euclid = "0.9"
|
|
fnv = "1.0"
|
|
gfx_traits = {path = "../gfx_traits"}
|
|
heapsize = "0.3.6"
|
|
heapsize_plugin = "0.1.2"
|
|
html5ever = {version = "0.5.1", features = ["heap_size", "unstable"]}
|
|
hyper = "0.9.9"
|
|
hyper_serde = "0.1.4"
|
|
image = "0.10"
|
|
ipc-channel = "0.5"
|
|
js = {git = "https://github.com/servo/rust-mozjs"}
|
|
libc = "0.2"
|
|
log = "0.3.5"
|
|
mime = "0.2.1"
|
|
mime_guess = "1.8.0"
|
|
msg = {path = "../msg"}
|
|
net_traits = {path = "../net_traits"}
|
|
num-traits = "0.1.32"
|
|
offscreen_gl_context = "0.3"
|
|
open = "1.1.1"
|
|
phf = "0.7.16"
|
|
phf_macros = "0.7.16"
|
|
plugins = {path = "../plugins"}
|
|
profile_traits = {path = "../profile_traits"}
|
|
rand = "0.3"
|
|
range = {path = "../range"}
|
|
ref_filter_map = "1.0"
|
|
ref_slice = "1.0"
|
|
regex = "0.1.43"
|
|
rustc-serialize = "0.3"
|
|
script_layout_interface = {path = "../script_layout_interface"}
|
|
script_traits = {path = "../script_traits"}
|
|
selectors = {version = "0.9", features = ["heap_size"]}
|
|
serde = "0.8"
|
|
smallvec = "0.1"
|
|
string_cache = {version = "0.2.23", features = ["heap_size", "unstable"]}
|
|
style = {path = "../style"}
|
|
time = "0.1.12"
|
|
url = {version = "1.2", features = ["heap_size", "query_encoding"]}
|
|
util = {path = "../util"}
|
|
uuid = {version = "0.3", features = ["v4"]}
|
|
websocket = "0.17"
|
|
xml5ever = {version = "0.1.2", features = ["unstable"]}
|
|
|
|
[dependencies.webrender_traits]
|
|
git = "https://github.com/servo/webrender_traits"
|
|
default_features = false
|
|
features = ["nightly", "serde_macros"]
|