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/bluetooth | |
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/bluetooth')
-rw-r--r-- | components/bluetooth/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/bluetooth/Cargo.toml b/components/bluetooth/Cargo.toml index 655cd52624a..93ed7d6e151 100644 --- a/components/bluetooth/Cargo.toml +++ b/components/bluetooth/Cargo.toml @@ -11,15 +11,15 @@ name = "bluetooth" path = "lib.rs" [dependencies] -bitflags = "1.0" +bitflags = { workspace = true } bluetooth_traits = { path = "../bluetooth_traits" } device = { git = "https://github.com/servo/devices", features = ["bluetooth-test"], rev = "cb28c4725ffbfece99dab842d17d3e8c50774778" } embedder_traits = { path = "../embedder_traits" } -ipc-channel = "0.14" -log = "0.4" +ipc-channel = { workspace = true } +log = { workspace = true } servo_config = { path = "../config" } servo_rand = { path = "../rand" } -uuid = { version = "0.8", features = ["v4"] } +uuid = { workspace = true } [features] native-bluetooth = ["device/bluetooth"] |