Skip to content

Commit

Permalink
Update smallvec dependency to 1.5.0
Browse files Browse the repository at this point in the history
Fixes panicking when loading cached serialized email from older versions
of meli.

servo/rust-smallvec#238
  • Loading branch information
epilys committed Nov 22, 2020
1 parent 0aa5cf2 commit 5b86c34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion melib/Cargo.toml
Expand Up @@ -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 }

Expand Down

0 comments on commit 5b86c34

Please sign in to comment.