diff options
author | Andre Bogus <bogusandre@gmail.com> | 2018-09-19 07:16:30 +0200 |
---|---|---|
committer | Andre Bogus <bogusandre@gmail.com> | 2018-09-19 07:16:30 +0200 |
commit | 34b5d8fbe8f2815758e69caab70ba28c6974381b (patch) | |
tree | c7ba64e20d11b248b608c5a22c342b843e20cf2c /components/fallible | |
parent | 3889041cc657940b9a60d16987a4746ed7a860a3 (diff) | |
download | servo-34b5d8fbe8f2815758e69caab70ba28c6974381b.tar.gz servo-34b5d8fbe8f2815758e69caab70ba28c6974381b.zip |
This updates the smallvec crate and enables the union feature
We had a mix of 0.6.2 and 0.6.5 (which is the current release),
this unifies to the latest version. It also enables the union
feature which removes the discriminant, reducing memory usage.
Diffstat (limited to 'components/fallible')
-rw-r--r-- | components/fallible/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/fallible/Cargo.toml b/components/fallible/Cargo.toml index 176355acd38..7b5291304be 100644 --- a/components/fallible/Cargo.toml +++ b/components/fallible/Cargo.toml @@ -10,7 +10,7 @@ name = "fallible" path = "lib.rs" [dependencies] -smallvec = "0.6.2" +smallvec = { version = "0.6", features = ["std", "union"] } hashglobe = { path = "../hashglobe" } # This crate effectively does nothing except if the `known_system_malloc` |