diff --git a/Cargo.lock b/Cargo.lock index 3bc44808..15dcc941 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2983,6 +2983,12 @@ dependencies = [ "pin-utils", ] +[[package]] +name = "no_denormals" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc8d4edce03a3be51d7736ddd5cf811f1852c2bb4d03637b82e2d1340e6f0bf9" + [[package]] name = "nom" version = "7.1.3" @@ -5392,9 +5398,9 @@ dependencies = [ [[package]] name = "web-audio-api" -version = "0.34.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20211522d5ba0d302025c8fde30553fc9295d416d478d686bb0e987acd51420e" +checksum = "9ccd24cdcbe908619397d214c26944c27efbe44006c6e70445294de9399a2c5d" dependencies = [ "arc-swap", "arrayvec", @@ -5407,10 +5413,10 @@ dependencies = [ "hrtf", "llq", "log", + "no_denormals", "num-complex", "realfft", "rubato", - "rustc-hash", "smallvec", "symphonia", "vecmath", diff --git a/refbox/Cargo.toml b/refbox/Cargo.toml index 17047ee6..c50ec672 100644 --- a/refbox/Cargo.toml +++ b/refbox/Cargo.toml @@ -46,7 +46,7 @@ tokio-serial = "5" toml = "0.8" uwh-common = { version = "0.1.3", path = "../uwh-common"} matrix-drawing = { version = "0.1.3", path = "../matrix-drawing"} -web-audio-api = { version = "0.34", default-features = false, features = ["cpal"] } +web-audio-api = { version = "0.37", default-features = false, features = ["cpal"] } [target.'cfg(target_os = "linux")'.dependencies] rppal = "0.14"