aboutsummaryrefslogtreecommitdiffstats
path: root/components/script_traits
diff options
context:
space:
mode:
authorbors-servo <infra@servo.org>2023-05-18 07:03:30 +0200
committerGitHub <noreply@github.com>2023-05-18 07:03:30 +0200
commitc7f8a6ecb5e55db86b0524bf7bcbe7cd842b1e9f (patch)
treec6e645d5436ebf1648df6a5f32c2b91987ec3976 /components/script_traits
parente09f85e17bd504a4c1c218ad14fa1a0ecbcaa839 (diff)
parent2f4c47bfe7828a8045d0392a4015f441fed1aa5d (diff)
downloadservo-c7f8a6ecb5e55db86b0524bf7bcbe7cd842b1e9f.tar.gz
servo-c7f8a6ecb5e55db86b0524bf7bcbe7cd842b1e9f.zip
Auto merge of #29747 - mrobinson:workspace-dependencies, r=mukilan
Start the transition to workspace dependencies This will ultimately make it simpler to update crate dependencies and reduce duplication 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. <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes do not require tests because they do not change behavior. <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'components/script_traits')
-rw-r--r--components/script_traits/Cargo.toml34
1 files changed, 17 insertions, 17 deletions
diff --git a/components/script_traits/Cargo.toml b/components/script_traits/Cargo.toml
index cd59c8da8a9..1ce7cd160e3 100644
--- a/components/script_traits/Cargo.toml
+++ b/components/script_traits/Cargo.toml
@@ -11,37 +11,37 @@ name = "script_traits"
path = "lib.rs"
[dependencies]
-bitflags = "1.0"
+bitflags = { workspace = true }
bluetooth_traits = { path = "../bluetooth_traits" }
canvas_traits = { path = "../canvas_traits" }
-cookie = "0.12"
-crossbeam-channel = "0.4"
+cookie = { workspace = true }
+crossbeam-channel = { workspace = true }
devtools_traits = { path = "../devtools_traits" }
embedder_traits = { path = "../embedder_traits" }
-euclid = "0.22"
+euclid = { workspace = true }
gfx_traits = { path = "../gfx_traits" }
-headers = "0.3"
-http = "0.2"
-hyper_serde = "0.13"
-ipc-channel = "0.14"
-keyboard-types = "0.6"
-libc = "0.2"
-log = "0.4"
+headers = { workspace = true }
+http = { workspace = true }
+hyper_serde = { workspace = true }
+ipc-channel = { workspace = true }
+keyboard-types = { workspace = true }
+libc = { workspace = true }
+log = { workspace = true }
malloc_size_of = { path = "../malloc_size_of" }
-malloc_size_of_derive = "0.1"
+malloc_size_of_derive = { workspace = true }
media = { path = "../media" }
msg = { path = "../msg" }
net_traits = { path = "../net_traits" }
pixels = { path = "../pixels" }
profile_traits = { path = "../profile_traits" }
-serde = "1.0"
+serde = { workspace = true }
servo_atoms = { path = "../atoms" }
servo_url = { path = "../url" }
-smallvec = "1.9"
+smallvec = { workspace = true }
style_traits = { path = "../style_traits", features = ["servo"] }
-time = "0.1.41"
-uuid = { version = "0.8", features = ["v4"] }
-webdriver = "0.44"
+time = { workspace = true }
+uuid = { workspace = true }
+webdriver = { workspace = true }
webgpu = { path = "../webgpu" }
webrender_api = { git = "https://github.com/servo/webrender" }
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }