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.
This commit is contained in:
Emilio Cobos Álvarez 2020-12-04 19:11:13 +01:00 committed by Thom Chiovoloni
parent 5cf0158863
commit 154e4869ee

View File

@ -109,7 +109,7 @@ fallible-iterator = "0.2"
fallible-streaming-iterator = "0.1" fallible-streaming-iterator = "0.1"
memchr = "2.3" memchr = "2.3"
uuid = { version = "0.8", optional = true } uuid = { version = "0.8", optional = true }
smallvec = "1.4" smallvec = "1.0"
[dev-dependencies] [dev-dependencies]
doc-comment = "0.3" doc-comment = "0.3"