From 4e485410df85d7e1aaa0b985d350de56a7411043 Mon Sep 17 00:00:00 2001 From: Tom Kaitchuck Date: Tue, 24 Oct 2023 17:02:31 -0700 Subject: [PATCH] Update zerocopy to 0.7.14 for new license Signed-off-by: Tom Kaitchuck --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b340522..aea0d44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ahash" -version = "0.8.5" +version = "0.8.6" authors = ["Tom Kaitchuck "] license = "MIT OR Apache-2.0" description = "A non-cryptographic hash function using AES-NI for high performance" @@ -80,7 +80,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.0", default-features = false, features = ["simd"] } +zerocopy = { version = "0.7.14", default-features = false, features = ["simd"] } [target.'cfg(not(all(target_arch = "arm", target_os = "none")))'.dependencies] once_cell = { version = "1.13.1", default-features = false, features = ["unstable", "alloc"] }