You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

ahash

Package Overview
Dependencies
Maintainers
1
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ahash - cargo Package Compare versions

Comparing version
0.8.8
to
0.8.9
+1
-1
.cargo_vcs_info.json
{
"git": {
"sha1": "669de234e4c7653ff814bed8244cb4d48356c594"
"sha1": "3f908902a9428c185ca333855e20b9385af7cce4"
},
"path_in_vcs": ""
}

@@ -14,5 +14,5 @@ # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO

edition = "2018"
rust-version = "1.72.0"
rust-version = "1.60.0"
name = "ahash"
version = "0.8.8"
version = "0.8.9"
authors = ["Tom Kaitchuck <Tom.Kaitchuck@gmail.com>"]

@@ -19,0 +19,0 @@ build = "./build.rs"

@@ -111,3 +111,3 @@ //! AHash is a high performance keyed hash function.

all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "aes", not(miri)),
all(target_arch = "aarch64", target_feature = "aes", not(miri)),
all(feature = "nightly-arm-aes", target_arch = "aarch64", target_feature = "aes", not(miri)),
all(feature = "nightly-arm-aes", target_arch = "arm", target_feature = "aes", not(miri)),

@@ -114,0 +114,0 @@ ))] {

use crate::convert::*;
#[allow(unused)]
use zerocopy::transmute;

@@ -114,3 +115,3 @@

#[cfg(any(
all(target_arch = "aarch64", target_feature = "aes", not(miri)),
all(feature = "nightly-arm-aes", target_arch = "aarch64", target_feature = "aes", not(miri)),
all(feature = "nightly-arm-aes", target_arch = "arm", target_feature = "aes", not(miri)),

@@ -145,3 +146,3 @@ ))]

#[cfg(any(
all(target_arch = "aarch64", target_feature = "aes", not(miri)),
all(feature = "nightly-arm-aes", target_arch = "aarch64", target_feature = "aes", not(miri)),
all(feature = "nightly-arm-aes", target_arch = "arm", target_feature = "aes", not(miri)),

@@ -148,0 +149,0 @@ ))]

@@ -5,3 +5,3 @@ use core::hash::Hash;

all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "aes", not(miri)),
all(target_arch = "aarch64", target_feature = "aes", not(miri)),
all(feature = "nightly-arm-aes", target_arch = "aarch64", target_feature = "aes", not(miri)),
all(feature = "nightly-arm-aes", target_arch = "arm", target_feature = "aes", not(miri)),

@@ -8,0 +8,0 @@ ))] {

@@ -17,3 +17,3 @@ #![cfg_attr(feature = "specialize", feature(build_hasher_simple_hash_one))]

),
all(target_arch = "aarch64", target_feature = "aes", not(miri)),
all(feature = "nightly-arm-aes", target_arch = "aarch64", target_feature = "aes", not(miri)),
all(

@@ -20,0 +20,0 @@ feature = "nightly-arm-aes",

Sorry, the diff of this file is not supported yet