diff options
Diffstat (limited to 'components/devtools/Cargo.toml')
-rw-r--r-- | components/devtools/Cargo.toml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/components/devtools/Cargo.toml b/components/devtools/Cargo.toml index ef86fe41686..d461147ec2f 100644 --- a/components/devtools/Cargo.toml +++ b/components/devtools/Cargo.toml @@ -11,18 +11,18 @@ name = "devtools" path = "lib.rs" [dependencies] -crossbeam-channel = "0.4" +crossbeam-channel = { workspace = true } devtools_traits = { path = "../devtools_traits" } embedder_traits = { path = "../embedder_traits" } -headers = "0.3" -http = "0.2" -ipc-channel = "0.14" -log = "0.4" +headers = { workspace = true } +http = { workspace = true } +ipc-channel = { workspace = true } +log = { workspace = true } msg = { path = "../msg" } -serde = "1.0" -serde_json = "1.0" +serde = { workspace = true } +serde_json = { workspace = true } servo_config = { path = "../config" } servo_rand = { path = "../rand" } servo_url = { path = "../url" } -time = "0.1" -uuid = { version = "0.8", features = ["v4"] } +time = { workspace = true } +uuid = { workspace = true } |