diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-05-16 19:54:19 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-05-17 11:59:35 +0200 |
commit | 2f4c47bfe7828a8045d0392a4015f441fed1aa5d (patch) | |
tree | cfdab05dff951c5c2d9be545267e7d9e73407dbd /tests/unit/style/Cargo.toml | |
parent | c5d31c3ab6ad4c633869ef4c4d32cd01c480661f (diff) | |
download | servo-2f4c47bfe7828a8045d0392a4015f441fed1aa5d.tar.gz servo-2f4c47bfe7828a8045d0392a4015f441fed1aa5d.zip |
Start the transition to workspace dependencies
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.
Diffstat (limited to 'tests/unit/style/Cargo.toml')
-rw-r--r-- | tests/unit/style/Cargo.toml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/unit/style/Cargo.toml b/tests/unit/style/Cargo.toml index 2fa49b6691b..c9f17dcf973 100644 --- a/tests/unit/style/Cargo.toml +++ b/tests/unit/style/Cargo.toml @@ -10,12 +10,12 @@ path = "lib.rs" doctest = false [dependencies] -app_units = "0.7" -cssparser = "0.29" -euclid = "0.22" -html5ever = "0.26" -rayon = "1" -serde_json = "1.0" +app_units = { workspace = true } +cssparser = { workspace = true } +euclid = { workspace = true } +html5ever = { workspace = true } +rayon = { workspace = true } +serde_json = { workspace = true } selectors = {path = "../../../components/selectors", features = ["shmem"] } servo_arc = {path = "../../../components/servo_arc"} servo_atoms = {path = "../../../components/atoms"} |