From 152ce202baa561c23f3093b708dbf090b8a52807 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Mon, 7 Dec 2020 15:39:45 +0100 Subject: [PATCH] upgraded to non-beta xxh3 --- afl/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afl/Cargo.toml b/afl/Cargo.toml index 50fe3da885..8719fbc9ff 100644 --- a/afl/Cargo.toml +++ b/afl/Cargo.toml @@ -29,7 +29,7 @@ std = [] hashbrown = { version = "0.9", features = ["serde"] } # A faster hashmap, nostd compatible libc = "0.2" # For (*nix) libc num = "*" -xxhash-rust = { version = "0.8.0-beta.5", features = ["const_xxh3", "xxh3"] } # xxh3 hashing for rust +xxhash-rust = { version = "0.8.0", features = ["const_xxh3", "xxh3"] } # xxh3 hashing for rust serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib erased-serde = "0.3.12" postcard = "0.5.1" # no_std compatible serde serialization fromat