From ae3969ad0885ef03567a53b4f683fccdd5d6f668 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Thu, 7 Dec 2017 14:26:15 -0800 Subject: [PATCH] Update to smallvec 0.6 --- Cargo.lock | 6 +++--- webrender/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9b1583ac92..310f2329fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -863,7 +863,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "smallvec" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1039,7 +1039,7 @@ dependencies = [ "serde_derive 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "servo-glutin 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "thread_profiler 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)", "webrender_api 0.55.0", @@ -1266,7 +1266,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum shared_library 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fb04126b6fcfd2710fb5b6d18f4207b6c535f2850a7e1a43bcd526d44f30a79a" "checksum shell32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "72f20b8f3c060374edb8046591ba28f62448c369ccbdc7b02075103fb3a9e38d" "checksum slab 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b4fcaed89ab08ef143da37bc52adbcc04d4a69014f4c1208d6b51f0c47bc23" -"checksum smallvec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "872c0ff227000041c520cca51e883b858d388ab0ecf646bab76f065cebaec025" +"checksum smallvec 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44db0ecb22921ef790d17ae13a3f6d15784183ff5f2a01aa32098c7498d2b4b9" "checksum strsim 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b4d15c810519a91cf877e7e36e63fe068815c678181439f2f29e2562147c3694" "checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" "checksum synom 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8fece1853fb872b0acdc3ff88f37c474018e125ef81cd4cb8c0ca515746b62ed" diff --git a/webrender/Cargo.toml b/webrender/Cargo.toml index 5e6ec9107b..20d82b7e98 100644 --- a/webrender/Cargo.toml +++ b/webrender/Cargo.toml @@ -28,7 +28,7 @@ webrender_api = {path = "../webrender_api"} bitflags = "1.0" thread_profiler = "0.1.1" plane-split = "0.6" -smallvec = "0.5" +smallvec = "0.6" ws = { optional = true, version = "0.7.3" } serde_json = { optional = true, version = "1.0" } serde = { optional = true, version = "1.0" }