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 /components/embedder_traits | |
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 'components/embedder_traits')
-rw-r--r-- | components/embedder_traits/Cargo.toml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/components/embedder_traits/Cargo.toml b/components/embedder_traits/Cargo.toml index fc9f20d66b3..430a57090f5 100644 --- a/components/embedder_traits/Cargo.toml +++ b/components/embedder_traits/Cargo.toml @@ -11,15 +11,15 @@ name = "embedder_traits" path = "lib.rs" [dependencies] -crossbeam-channel = "0.4" -ipc-channel = "0.14" -keyboard-types = "0.6" -lazy_static = "1" -log = "0.4" +crossbeam-channel = { workspace = true } +ipc-channel = { workspace = true } +keyboard-types = { workspace = true } +lazy_static = { workspace = true } +log = { workspace = true } msg = { path = "../msg" } num-derive = "0.3" -num-traits = "0.2" -serde = "1.0" +num-traits = { workspace = true } +serde = { workspace = true } servo_url = { path = "../url" } webrender_api = { git = "https://github.com/servo/webrender" } webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] } |