mirror of
https://github.com/servo/servo
synced 2026-04-27 01:55:03 +02:00
This will ultimately make it simpler to update crate dependencies and reduce duplicate when specifying requirements. Generally, this change does not touch dependencies that are only used by a single crate. We could consider moving them to workspace dependencies in the future.
17 lines
353 B
TOML
17 lines
353 B
TOML
[package]
|
|
name = "script_tests"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "script_tests"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
euclid = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
script = {path = "../../../components/script"}
|
|
servo_url = {path = "../../../components/url"}
|