mirror of
https://github.com/servo/servo
synced 2026-05-01 11:57:31 +02:00
34 lines
582 B
TOML
34 lines
582 B
TOML
[package]
|
|
name = "devtools"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "devtools"
|
|
path = "lib.rs"
|
|
|
|
[dependencies.devtools_traits]
|
|
path = "../devtools_traits"
|
|
|
|
[dependencies.msg]
|
|
path = "../msg"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.ipc-channel]
|
|
git = "https://github.com/servo/ipc-channel"
|
|
|
|
[dependencies]
|
|
hyper = { version = "0.7", features = [ "serde-serialization" ] }
|
|
log = "0.3"
|
|
rustc-serialize = "0.3"
|
|
serde = "0.6"
|
|
serde_json = "0.6"
|
|
serde_macros = "0.6"
|
|
time = "0.1"
|