From 5b86c342fb00ed0ca1fa2b6789792ba59079b1e6 Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Sun, 22 Nov 2020 06:22:57 +0200 Subject: [PATCH] Update smallvec dependency to 1.5.0 Fixes panicking when loading cached serialized email from older versions of meli. https://github.com/servo/rust-smallvec/pull/238 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- melib/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1daeb54c2..fb3eda649 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1760,9 +1760,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.4.2" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbee7696b84bbf3d89a1c2eccff0850e3047ed46bfcd2e92c29a2d074d57e252" +checksum = "7acad6f34eb9e8a259d3283d1e8c1d34d7415943d4895f65cc73813c7396fc85" dependencies = [ "serde", ] diff --git a/Cargo.toml b/Cargo.toml index 27fa9c1a0..52b1dbd7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ bincode = "^1.3.0" uuid = { version = "0.8.1", features = ["serde", "v4"] } unicode-segmentation = "1.2.1" # >:c libc = {version = "0.2.59", features = ["extra_traits",]} -smallvec = { version = "^1.4.0", features = ["serde", ] } +smallvec = { version = "^1.5.0", features = ["serde", ] } bitflags = "1.0" pcre2 = { version = "0.2.3", optional = true } structopt = { version = "0.3.14", default-features = false } diff --git a/melib/Cargo.toml b/melib/Cargo.toml index ce259c8f3..f14c5c00b 100644 --- a/melib/Cargo.toml +++ b/melib/Cargo.toml @@ -37,7 +37,7 @@ unicode-segmentation = { version = "1.2.1", optional = true } libc = {version = "0.2.59", features = ["extra_traits",]} isahc = { version = "0.9.7", optional = true, default-features = false, features = ["http2", "json", "text-decoding"]} serde_json = { version = "1.0", optional = true, features = ["raw_value",] } -smallvec = { version = "^1.4.0", features = ["serde", ] } +smallvec = { version = "^1.5.0", features = ["serde", ] } nix = "0.17.0" rusqlite = {version = "0.24.0", optional = true }