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

num-complex

Package Overview
Dependencies
Maintainers
0
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

num-complex - cargo Package Compare versions

Comparing version
0.1.37
to
0.1.38
+1
-1
Cargo.toml

@@ -10,3 +10,3 @@ [package]

repository = "https://github.com/rust-num/num"
version = "0.1.37"
version = "0.1.38"

@@ -13,0 +13,0 @@ [dependencies]

@@ -768,4 +768,5 @@ // Copyright 2013 The Rust Project Developers. See the COPYRIGHT

fn hash<T: hash::Hash>(x: &T) -> u64 {
use std::hash::Hasher;
let mut hasher = hash::SipHasher::new();
use std::hash::{BuildHasher, Hasher};
use std::collections::hash_map::RandomState;
let mut hasher = <RandomState as BuildHasher>::Hasher::new();
x.hash(&mut hasher);

@@ -772,0 +773,0 @@ hasher.finish()