From 677d089c27f00f1c3b435eae6666015c08cd2f8d Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Wed, 27 Jan 2021 10:58:50 +0000 Subject: [PATCH] Update smallvec to 1.6 There was a vulnerability found in smallvec as described in: * https://github.com/servo/rust-smallvec/issues/252 * https://github.com/RustSec/advisory-db/pull/552 This patch update the package version to 1.6 which is deemed safe to use. Signed-off-by: Fintan Halpenny --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index f1a08029..f6997a9b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] cfg-if = "1.0.0" -smallvec = "1.0" +smallvec = "1.6" petgraph = { version = "0.5.1", optional = true } thread-id = { version = "3.3.0", optional = true } backtrace = { version = "0.3.49", optional = true }