mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
27 lines
552 B
TOML
27 lines
552 B
TOML
[package]
|
|
name = "devtools"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "devtools"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
crossbeam-channel = "0.4"
|
|
devtools_traits = { path = "../devtools_traits" }
|
|
embedder_traits = { path = "../embedder_traits" }
|
|
headers = "0.2"
|
|
http = "0.1"
|
|
hyper = "0.12"
|
|
ipc-channel = "0.14"
|
|
log = "0.4"
|
|
msg = { path = "../msg" }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
servo_url = { path = "../url" }
|
|
time = "0.1"
|
|
uuid = { version = "0.8", features = ["v4"] }
|