diff options
Diffstat (limited to 'components/script_traits/Cargo.toml')
-rw-r--r-- | components/script_traits/Cargo.toml | 34 |
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"] } |