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/servo/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 'components/servo/Cargo.toml')
-rw-r--r-- | components/servo/Cargo.toml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/components/servo/Cargo.toml b/components/servo/Cargo.toml index 429ad82953f..67b91717034 100644 --- a/components/servo/Cargo.toml +++ b/components/servo/Cargo.toml @@ -45,21 +45,21 @@ canvas = { path = "../canvas", default-features = false } canvas_traits = { path = "../canvas_traits" } compositing = { path = "../compositing", features = ["gl"] } constellation = { path = "../constellation" } -crossbeam-channel = "0.4" +crossbeam-channel = { workspace = true } devtools = { path = "../devtools" } devtools_traits = { path = "../devtools_traits" } embedder_traits = { path = "../embedder_traits" } -env_logger = "0.8" -euclid = "0.22" +env_logger = { workspace = true } +euclid = { workspace = true } gfx = { path = "../gfx" } gfx_traits = { path = "../gfx_traits" } -gleam = "0.12" +gleam = { workspace = true } gstreamer = { version = "0.15", features = ["v1_16"], optional = true } -ipc-channel = "0.14" -keyboard-types = "0.6" +ipc-channel = { workspace = true } +keyboard-types = { workspace = true } layout_thread_2013 = { path = "../layout_thread", optional = true } layout_thread_2020 = { path = "../layout_thread_2020", optional = true } -log = "0.4" +log = { workspace = true } media = { path = "../media" } msg = { path = "../msg" } net = { path = "../net" } @@ -75,10 +75,10 @@ servo-media-gstreamer = { git = "https://github.com/servo/media", optional = tru servo_config = { path = "../config" } servo_geometry = { path = "../geometry" } servo_url = { path = "../url" } -sparkle = "0.1" +sparkle = { workspace = true } style = { path = "../style", features = ["servo"] } style_traits = { path = "../style_traits", features = ["servo"] } -surfman = "0.6" +surfman = { workspace = true } webdriver_server = { path = "../webdriver_server", optional = true } webgpu = { path = "../webgpu" } webrender = { git = "https://github.com/servo/webrender" } |