From 154e4869ee1f661fae3d30d55dd84a47d1772e28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Fri, 4 Dec 2020 19:11:13 +0100 Subject: [PATCH] Use a weaker dependency on smallvec. There's no reason to use 1.4, 1.0.0 works just as well. 1.4 causes a big perf regression in Firefox, see https://github.com/servo/rust-smallvec/issues/243, so while we figure that out we'd like to keep using 1.3.0. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d6d15bb..0c25a3f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -109,7 +109,7 @@ fallible-iterator = "0.2" fallible-streaming-iterator = "0.1" memchr = "2.3" uuid = { version = "0.8", optional = true } -smallvec = "1.4" +smallvec = "1.0" [dev-dependencies] doc-comment = "0.3"