File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ no_denormals = "0.1.2"
29
29
num-complex = " 0.4"
30
30
realfft = " 3.3"
31
31
rubato = " 0.14"
32
- rustc-hash = " 1.1"
33
32
smallvec = " 1.11"
34
33
symphonia = { version = " 0.5" , default-features = false }
35
34
vecmath = " 1.0"
Original file line number Diff line number Diff line change 4
4
//!
5
5
//! <https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices>
6
6
7
- use rustc_hash :: FxHasher ;
7
+ use std :: collections :: hash_map :: DefaultHasher ;
8
8
use std:: hash:: { Hash , Hasher } ;
9
9
10
10
use crate :: context:: { AudioContextLatencyCategory , AudioContextOptions } ;
@@ -54,7 +54,7 @@ impl DeviceId {
54
54
index,
55
55
} ;
56
56
57
- let mut hasher = FxHasher :: default ( ) ;
57
+ let mut hasher = DefaultHasher :: new ( ) ;
58
58
device_info. hash ( & mut hasher) ;
59
59
format ! ( "{}" , hasher. finish( ) )
60
60
}
You can’t perform that action at this time.
0 commit comments