From 23afb9237f219124079570b95c4c412e21bf9d2f Mon Sep 17 00:00:00 2001 From: Youser Nayme <7685106-NeutralModder@users.noreply.gitlab.com> Date: Mon, 20 May 2024 07:14:00 -0400 Subject: [PATCH] Update rodio --- Cargo.lock | 5 +++-- voxygen/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 020749e5b0..c469ef4cc8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5384,12 +5384,13 @@ dependencies = [ [[package]] name = "rodio" -version = "0.17.3" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b1bb7b48ee48471f55da122c0044fcc7600cfcc85db88240b89cb832935e611" +checksum = "16e3ea3fb0b6a1837445e29e36971b101c154920791113ff860768a68a0b1cad" dependencies = [ "cpal", "lewton", + "thiserror", ] [[package]] diff --git a/voxygen/Cargo.toml b/voxygen/Cargo.toml index 6f76d07993..225b80619c 100644 --- a/voxygen/Cargo.toml +++ b/voxygen/Cargo.toml @@ -128,7 +128,7 @@ ordered-float = { workspace = true } rand = { workspace = true } rand_chacha = { workspace = true } rayon = { workspace = true } -rodio = { version = "0.17", default-features = false, features = ["vorbis"] } +rodio = { version = "0.18", default-features = false, features = ["vorbis"] } ron = { workspace = true } serde = { workspace = true, features = ["rc"] } slab = { workspace = true }