From eec1b5853e2a75dc2b317dfbdb3a5d9f15d30f17 Mon Sep 17 00:00:00 2001 From: Imbris Date: Wed, 23 Aug 2023 00:47:31 -0400 Subject: [PATCH] Remove unused cpal version Also it turns out directories-next is in use for something that we need --- Cargo.lock | 74 ++-------------------------------------------- voxygen/Cargo.toml | 3 -- 2 files changed, 3 insertions(+), 74 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8aa2c17539..9f19c40d92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1120,30 +1120,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "cpal" -version = "0.14.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f342c1b63e185e9953584ff2199726bf53850d96610a310e3aca09e9405a2d0b" -dependencies = [ - "alsa", - "core-foundation-sys", - "coreaudio-rs", - "jni 0.19.0", - "js-sys", - "libc", - "mach", - "ndk 0.7.0", - "ndk-context", - "oboe", - "once_cell", - "parking_lot 0.12.1", - "stdweb 0.4.20", - "thiserror", - "web-sys", - "windows 0.37.0", -] - [[package]] name = "cpufeatures" version = "0.2.7" @@ -2543,7 +2519,7 @@ dependencies = [ "vec_map", "wasm-bindgen", "web-sys", - "windows 0.48.0", + "windows", ] [[package]] @@ -2918,7 +2894,7 @@ dependencies = [ "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows 0.48.0", + "windows", ] [[package]] @@ -5204,7 +5180,7 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0939e9f626e6c6f1989adb6226a039c855ca483053f0ee7c98b90e41cf731e" dependencies = [ - "cpal 0.13.5", + "cpal", "lewton", ] @@ -7336,7 +7312,6 @@ dependencies = [ "cmake", "conrod_core", "conrod_winit", - "cpal 0.14.2", "criterion", "crossbeam-channel", "crossbeam-utils 0.8.15", @@ -8127,19 +8102,6 @@ dependencies = [ "thiserror", ] -[[package]] -name = "windows" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647" -dependencies = [ - "windows_aarch64_msvc 0.37.0", - "windows_i686_gnu 0.37.0", - "windows_i686_msvc 0.37.0", - "windows_x86_64_gnu 0.37.0", - "windows_x86_64_msvc 0.37.0", -] - [[package]] name = "windows" version = "0.48.0" @@ -8243,12 +8205,6 @@ version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd761fd3eb9ab8cc1ed81e56e567f02dd82c4c837e48ac3b2181b9ffc5060807" -[[package]] -name = "windows_aarch64_msvc" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a" - [[package]] name = "windows_aarch64_msvc" version = "0.42.2" @@ -8267,12 +8223,6 @@ version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cab0cf703a96bab2dc0c02c0fa748491294bf9b7feb27e1f4f96340f208ada0e" -[[package]] -name = "windows_i686_gnu" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1" - [[package]] name = "windows_i686_gnu" version = "0.42.2" @@ -8291,12 +8241,6 @@ version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8cfdbe89cc9ad7ce618ba34abc34bbb6c36d99e96cae2245b7943cd75ee773d0" -[[package]] -name = "windows_i686_msvc" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c" - [[package]] name = "windows_i686_msvc" version = "0.42.2" @@ -8315,12 +8259,6 @@ version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4dd9b0c0e9ece7bb22e84d70d01b71c6d6248b81a3c60d11869451b4cb24784" -[[package]] -name = "windows_x86_64_gnu" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d" - [[package]] name = "windows_x86_64_gnu" version = "0.42.2" @@ -8351,12 +8289,6 @@ version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff1e4aa646495048ec7f3ffddc411e1d829c026a2ec62b39da15c1055e406eaa" -[[package]] -name = "windows_x86_64_msvc" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d" - [[package]] name = "windows_x86_64_msvc" version = "0.42.2" diff --git a/voxygen/Cargo.toml b/voxygen/Cargo.toml index 56cc710cf0..ec49d56981 100644 --- a/voxygen/Cargo.toml +++ b/voxygen/Cargo.toml @@ -104,11 +104,8 @@ backtrace = "0.3.40" bincode = { workspace = true } chrono = { workspace = true } chumsky = "0.9" -# TODO: unused -cpal = "0.14" crossbeam-utils = { workspace = true } crossbeam-channel = { workspace = true } -# TODO: remove directories-next = "2.0" dot_vox = "5.1" enum-iterator = "1.1.0"