From 47a7495f52c9d19c280ace300c56b29a256a9786 Mon Sep 17 00:00:00 2001 From: Nabil Wadih Date: Fri, 29 Dec 2023 15:36:02 -0500 Subject: [PATCH] Update zerocopy version to 0.7.31 (#189) - There is a security vulnerability in older versions of the crate: https://rustsec.org/advisories/RUSTSEC-2023-0074 Co-authored-by: Nabil Wadih --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d37c2de..49a8f03 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,7 +84,7 @@ serde = { version = "1.0.117", optional = true } cfg-if = "1.0" atomic-polyfill = { version="1.0.1", optional=true} getrandom = { version = "0.2.7", optional = true } -zerocopy = { version = "0.7.20", default-features = false, features = ["simd"] } +zerocopy = { version = "0.7.31", default-features = false, features = ["simd"] } [target.'cfg(not(all(target_arch = "arm", target_os = "none")))'.dependencies] once_cell = { version = "1.18.0", default-features = false, features = ["alloc"] }