diff options
Diffstat (limited to 'components/net_traits/Cargo.toml')
-rw-r--r-- | components/net_traits/Cargo.toml | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/components/net_traits/Cargo.toml b/components/net_traits/Cargo.toml index 9f5ec0ca4f3..a31a23759c5 100644 --- a/components/net_traits/Cargo.toml +++ b/components/net_traits/Cargo.toml @@ -13,31 +13,31 @@ test = false doctest = false [dependencies] -content-security-policy = { version = "0.5", features = ["serde"] } -cookie = "0.12" +content-security-policy = { workspace = true } +cookie = { workspace = true } embedder_traits = { path = "../embedder_traits" } -headers = "0.3" -http = "0.2" -hyper = "0.14" -hyper_serde = "0.13" -image = "0.24" -ipc-channel = "0.14" -lazy_static = "1" -log = "0.4" +headers = { workspace = true } +http = { workspace = true } +hyper = { workspace = true } +hyper_serde = { workspace = true } +image = { workspace = true } +ipc-channel = { workspace = true } +lazy_static = { workspace = true } +log = { workspace = true } malloc_size_of = { path = "../malloc_size_of" } -malloc_size_of_derive = "0.1" -mime = "0.3" +malloc_size_of_derive = { workspace = true } +mime = { workspace = true } msg = { path = "../msg" } -num-traits = "0.2" -percent-encoding = "2.0" +num-traits = { workspace = true } +percent-encoding = { workspace = true } pixels = { path = "../pixels" } -serde = "1.0" +serde = { workspace = true } servo_arc = { path = "../servo_arc" } servo_rand = { path = "../rand" } servo_url = { path = "../url" } -time = "0.1" -url = "2.0" -uuid = { version = "0.8", features = ["v4", "serde"] } +time = { workspace = true } +url = { workspace = true } +uuid = { workspace = true } webrender_api = { git = "https://github.com/servo/webrender" } [dev-dependencies] |