diff options
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | components/canvas/Cargo.toml | 2 | ||||
-rw-r--r-- | components/canvas_traits/Cargo.toml | 2 | ||||
-rw-r--r-- | components/compositing/Cargo.toml | 2 | ||||
-rw-r--r-- | components/gfx/Cargo.toml | 2 | ||||
-rw-r--r-- | components/layout_thread/Cargo.toml | 2 | ||||
-rw-r--r-- | components/malloc_size_of/Cargo.toml | 2 | ||||
-rw-r--r-- | components/net/Cargo.toml | 4 | ||||
-rw-r--r-- | components/profile_traits/Cargo.toml | 3 | ||||
-rw-r--r-- | components/script/Cargo.toml | 2 | ||||
-rw-r--r-- | components/script_traits/Cargo.toml | 2 |
11 files changed, 13 insertions, 14 deletions
diff --git a/Cargo.lock b/Cargo.lock index 8c61f8a786b..e4c617c4b4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3696,9 +3696,9 @@ checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" [[package]] name = "mime_guess" -version = "2.0.1" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a0ed03949aef72dbdf3116a383d7b38b4768e6f960528cd6a6044aa9ed68599" +checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212" dependencies = [ "mime", "unicase", diff --git a/components/canvas/Cargo.toml b/components/canvas/Cargo.toml index 38e594d2a70..3d02f0ee42f 100644 --- a/components/canvas/Cargo.toml +++ b/components/canvas/Cargo.toml @@ -43,7 +43,7 @@ style_traits = { path = "../style_traits" } surfman = { version = "0.4", features = ["sm-angle","sm-angle-default"] } surfman-chains = "0.6" surfman-chains-api = "0.2" -time = { version = "0.1.0", optional = true } +time = { version = "0.1.41", optional = true } webrender = { git = "https://github.com/servo/webrender" } webrender_api = { git = "https://github.com/servo/webrender" } webrender_surfman = { path = "../webrender_surfman" } diff --git a/components/canvas_traits/Cargo.toml b/components/canvas_traits/Cargo.toml index d6d8290378e..8e0d3397c25 100644 --- a/components/canvas_traits/Cargo.toml +++ b/components/canvas_traits/Cargo.toml @@ -28,6 +28,6 @@ serde_bytes = "0.11" servo_config = { path = "../config" } sparkle = "0.1" style = { path = "../style" } -time = { version = "0.1.0", optional = true } +time = { version = "0.1.41", optional = true } webrender_api = { git = "https://github.com/servo/webrender" } webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] } diff --git a/components/compositing/Cargo.toml b/components/compositing/Cargo.toml index 048344af294..4353f7b9472 100644 --- a/components/compositing/Cargo.toml +++ b/components/compositing/Cargo.toml @@ -37,7 +37,7 @@ servo-media = { git = "https://github.com/servo/media" } servo_geometry = { path = "../geometry" } servo_url = { path = "../url" } style_traits = { path = "../style_traits" } -time = "0.1.17" +time = "0.1.41" webrender = { git = "https://github.com/servo/webrender", features = ["capture"] } webrender_api = { git = "https://github.com/servo/webrender" } webrender_surfman = { path = "../webrender_surfman" } diff --git a/components/gfx/Cargo.toml b/components/gfx/Cargo.toml index d4edc78d2b0..df819aab86d 100644 --- a/components/gfx/Cargo.toml +++ b/components/gfx/Cargo.toml @@ -34,7 +34,7 @@ servo_atoms = { path = "../atoms" } servo_url = { path = "../url" } smallvec = { version = "0.6", features = ["std", "union"] } style = { path = "../style", features = ["servo"] } -time = "0.1.12" +time = "0.1.41" ucd = "0.1.1" unicode-bidi = { version = "0.3", features = ["with_serde"] } unicode-script = "0.5" diff --git a/components/layout_thread/Cargo.toml b/components/layout_thread/Cargo.toml index 8b5bc11d1d5..f0f4734d90e 100644 --- a/components/layout_thread/Cargo.toml +++ b/components/layout_thread/Cargo.toml @@ -48,5 +48,5 @@ servo_config = { path = "../config" } servo_url = { path = "../url" } style = { path = "../style" } style_traits = { path = "../style_traits" } -time = "0.1.17" +time = "0.1.41" webrender_api = { git = "https://github.com/servo/webrender" } diff --git a/components/malloc_size_of/Cargo.toml b/components/malloc_size_of/Cargo.toml index f3b40bfa0d6..97e60e16d7e 100644 --- a/components/malloc_size_of/Cargo.toml +++ b/components/malloc_size_of/Cargo.toml @@ -45,7 +45,7 @@ smallbitvec = "2.3.0" smallvec = "1.0" string_cache = { version = "0.8", optional = true } thin-slice = "0.1.0" -time = { version = "0.1.17", optional = true } +time = { version = "0.1.41", optional = true } url = { version = "2.0", optional = true } uuid = { version = "0.8", features = ["v4"], optional = true } void = "1.0.2" diff --git a/components/net/Cargo.toml b/components/net/Cargo.toml index 3a413617b73..66678844bb2 100644 --- a/components/net/Cargo.toml +++ b/components/net/Cargo.toml @@ -41,7 +41,7 @@ log = "0.4" malloc_size_of = { path = "../malloc_size_of" } malloc_size_of_derive = "0.1" mime = "0.3" -mime_guess = "2.0.0" +mime_guess = "2.0.3" msg = { path = "../msg" } net_traits = { path = "../net_traits" } openssl = "0.10" @@ -56,7 +56,7 @@ servo_allocator = { path = "../allocator" } servo_arc = { path = "../servo_arc" } servo_config = { path = "../config" } servo_url = { path = "../url" } -time = "0.1.17" +time = "0.1.41" tokio = "0.1" tokio2 = { version = "0.2", package = "tokio", features = ["sync", "macros", "rt-threaded"] } tungstenite = "0.11" diff --git a/components/profile_traits/Cargo.toml b/components/profile_traits/Cargo.toml index 519170dc0c7..655f7a001d8 100644 --- a/components/profile_traits/Cargo.toml +++ b/components/profile_traits/Cargo.toml @@ -17,5 +17,4 @@ log = "0.4" serde = "1.0" servo_config = { path = "../config" } signpost = { git = "https://github.com/pcwalton/signpost.git" } -time = "0.1.12" - +time = "0.1.41" diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml index e3f86b85d35..7e9fc2dbb07 100644 --- a/components/script/Cargo.toml +++ b/components/script/Cargo.toml @@ -107,7 +107,7 @@ style_traits = { path = "../style_traits" } swapper = "0.1" tempfile = "3" tendril = { version = "0.4.1", features = ["encoding_rs"] } -time = "0.1.12" +time = "0.1.41" unicode-bidi = "0.3.4" unicode-segmentation = "1.1.0" url = "2.0" diff --git a/components/script_traits/Cargo.toml b/components/script_traits/Cargo.toml index 9f9e1233c8e..14a709cea20 100644 --- a/components/script_traits/Cargo.toml +++ b/components/script_traits/Cargo.toml @@ -39,7 +39,7 @@ servo_atoms = { path = "../atoms" } servo_url = { path = "../url" } smallvec = "0.6" style_traits = { path = "../style_traits", features = ["servo"] } -time = "0.1.12" +time = "0.1.41" uuid = { version = "0.8", features = ["v4"] } webdriver = "0.40" webgpu = { path = "../webgpu" } |