mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Sometimes clippy gets outdated by months, and its current support setup means that each Servo component need to opt into it by depending on the plugins crate manually, and not all components do that.
23 lines
408 B
TOML
23 lines
408 B
TOML
[package]
|
|
name = "devtools"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "devtools"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
devtools_traits = {path = "../devtools_traits"}
|
|
encoding = "0.2"
|
|
hyper = "0.9.9"
|
|
hyper_serde = "0.5"
|
|
ipc-channel = "0.7"
|
|
log = "0.3.5"
|
|
msg = {path = "../msg"}
|
|
serde = "0.9"
|
|
serde_derive = "0.9"
|
|
serde_json = "0.9"
|
|
time = "0.1"
|