From 9cef1b00fbd879eedd1425e9953ffd601184d829 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.1 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.1 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..cfa9e3b9 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.1" petgraph = { version = "0.5.1", optional = true } thread-id = { version = "3.3.0", optional = true } backtrace = { version = "0.3.49", optional = true }