aboutsummaryrefslogtreecommitdiffstats
path: root/components/to_shmem
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2023-05-16 19:54:19 +0200
committerMartin Robinson <mrobinson@igalia.com>2023-05-17 11:59:35 +0200
commit2f4c47bfe7828a8045d0392a4015f441fed1aa5d (patch)
treecfdab05dff951c5c2d9be545267e7d9e73407dbd /components/to_shmem
parentc5d31c3ab6ad4c633869ef4c4d32cd01c480661f (diff)
downloadservo-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 'components/to_shmem')
-rw-r--r--components/to_shmem/Cargo.toml10
1 files changed, 5 insertions, 5 deletions
diff --git a/components/to_shmem/Cargo.toml b/components/to_shmem/Cargo.toml
index feafeebd0ee..a87b441fa10 100644
--- a/components/to_shmem/Cargo.toml
+++ b/components/to_shmem/Cargo.toml
@@ -15,9 +15,9 @@ servo = ["cssparser/serde", "string_cache"]
gecko = []
[dependencies]
-cssparser = "0.29"
+cssparser = { workspace = true }
servo_arc = { path = "../servo_arc" }
-smallbitvec = "2.1.1"
-smallvec = "1.0"
-string_cache = { version = "0.8", optional = true }
-thin-slice = "0.1.0"
+smallbitvec = { workspace = true }
+smallvec = { workspace = true }
+string_cache = { workspace = true, optional = true }
+thin-slice = { workspace = true }