mirror of
https://github.com/servo/servo
synced 2026-05-13 02:17:06 +02: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.
17 lines
341 B
TOML
17 lines
341 B
TOML
[package]
|
|
name = "script_tests"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
|
|
[lib]
|
|
name = "script_tests"
|
|
path = "lib.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
euclid = "0.11"
|
|
msg = {path = "../../../components/msg"}
|
|
script = {path = "../../../components/script"}
|
|
servo_url = {path = "../../../components/url"}
|