diff options
Diffstat (limited to 'components/profile/Cargo.toml')
-rw-r--r-- | components/profile/Cargo.toml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/profile/Cargo.toml b/components/profile/Cargo.toml index cef0b686df3..0e20ea2b1a4 100644 --- a/components/profile/Cargo.toml +++ b/components/profile/Cargo.toml @@ -11,18 +11,18 @@ name = "profile" path = "lib.rs" [dependencies] -ipc-channel = "0.14" +ipc-channel = { workspace = true } profile_traits = { path = "../profile_traits" } -serde = "1.0" -serde_json = "1.0" +serde = { workspace = true } +serde_json = { workspace = true } servo_config = { path = "../config" } [target.'cfg(target_os = "macos")'.dependencies] task_info = { path = "../../support/rust-task_info" } [target.'cfg(target_os = "linux")'.dependencies] -regex = "1.1" +regex = { workspace = true } [target.'cfg(not(target_os = "windows"))'.dependencies] -libc = "0.2" +libc = { workspace = true } servo_allocator = { path = "../allocator" } |