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"
2929num-complex = " 0.4"
3030realfft = " 3.3"
3131rubato = " 0.14"
32- rustc-hash = " 1.1"
3332smallvec = " 1.11"
3433symphonia = { version = " 0.5" , default-features = false }
3534vecmath = " 1.0"
Original file line number Diff line number Diff line change 44//!
55//! <https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices>
66
7- use rustc_hash :: FxHasher ;
7+ use std :: collections :: hash_map :: DefaultHasher ;
88use std:: hash:: { Hash , Hasher } ;
99
1010use crate :: context:: { AudioContextLatencyCategory , AudioContextOptions } ;
@@ -54,7 +54,7 @@ impl DeviceId {
5454 index,
5555 } ;
5656
57- let mut hasher = FxHasher :: default ( ) ;
57+ let mut hasher = DefaultHasher :: new ( ) ;
5858 device_info. hash ( & mut hasher) ;
5959 format ! ( "{}" , hasher. finish( ) )
6060 }
You can’t perform that action at this time.
0 commit comments