mirror of
https://github.com/servo/servo.git
synced 2025-07-16 03:43:38 +01:00
69 lines
1.2 KiB
TOML
69 lines
1.2 KiB
TOML
[package]
|
|
name = "script"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
|
|
build = "make -f makefile.cargo"
|
|
|
|
[lib]
|
|
name = "script"
|
|
path = "lib.rs"
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.msg]
|
|
path = "../msg"
|
|
|
|
[dependencies.net]
|
|
path = "../net"
|
|
|
|
[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.cssparser]
|
|
git = "https://github.com/servo/rust-cssparser"
|
|
|
|
[dependencies.geom]
|
|
git = "https://github.com/servo/rust-geom"
|
|
|
|
[dependencies.html5ever]
|
|
git = "https://github.com/servo/html5ever"
|
|
branch = "servo"
|
|
|
|
[dependencies.encoding]
|
|
git = "https://github.com/lifthrasiir/rust-encoding"
|
|
|
|
[dependencies.http]
|
|
git = "https://github.com/servo/rust-http"
|
|
branch = "servo"
|
|
|
|
[dependencies.js]
|
|
git = "https://github.com/servo/rust-mozjs"
|
|
|
|
[dependencies.url]
|
|
git = "https://github.com/servo/rust-url"
|
|
|
|
[dependencies.uuid]
|
|
git = "https://github.com/rust-lang/uuid"
|
|
|
|
[dependencies.string_cache]
|
|
git = "https://github.com/servo/string-cache"
|
|
|
|
[dependencies.string_cache_macros]
|
|
git = "https://github.com/servo/string-cache"
|