From 4a5ab2a90a1ad910d2823f5c3e17f30c8acfc678 Mon Sep 17 00:00:00 2001 From: Alex Janka Date: Wed, 4 Oct 2023 11:54:40 +1100 Subject: [PATCH] cleaning + package versions --- Cargo.lock | 4 ++-- gb-emu/Cargo.toml | 6 +++--- gb-vst/Cargo.toml | 2 +- gb-vst/src/ui.rs | 1 - lib/Cargo.toml | 6 +++--- 5 files changed, 9 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8268fc7..fec7e1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1558,9 +1558,9 @@ dependencies = [ [[package]] name = "itertools" -version = "0.10.5" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" dependencies = [ "either", ] diff --git a/gb-emu/Cargo.toml b/gb-emu/Cargo.toml index 81bc60b..f7d3772 100644 --- a/gb-emu/Cargo.toml +++ b/gb-emu/Cargo.toml @@ -11,12 +11,12 @@ camera = ["dep:nokhwa", "dep:send_wrapper"] [dependencies] gb-emu-lib = { path = "../lib", default-features = false } -clap = { version = "4.1.8", features = ["derive"] } +clap = { version = "4.4", features = ["derive"] } gilrs = "0.10" cpal = "0.15" futures = "0.3" -ctrlc = "3.2.5" -nokhwa = { version = "0.10.3", features = [ +ctrlc = "3.4" +nokhwa = { version = "0.10", features = [ "input-avfoundation", ], optional = true } send_wrapper = { version = "0.6.0", optional = true } diff --git a/gb-vst/Cargo.toml b/gb-vst/Cargo.toml index 7311e7d..740a16b 100644 --- a/gb-vst/Cargo.toml +++ b/gb-vst/Cargo.toml @@ -14,7 +14,7 @@ default = [] gb-emu-lib = { path = "../lib", features = ["vulkan-renderer"] } nih_plug = { path = "../vendored/nih-plug", features = ["standalone"] } baseview = { path = "../vendored/baseview" } -async-ringbuf = "0.1.2" +async-ringbuf = "0.1" futures = "0.3" keyboard-types = "0.6.2" raw-window-handle = "0.5" diff --git a/gb-vst/src/ui.rs b/gb-vst/src/ui.rs index 1cce493..414a9ce 100644 --- a/gb-vst/src/ui.rs +++ b/gb-vst/src/ui.rs @@ -74,7 +74,6 @@ impl Editor for Emulator { } fn set_scale_factor(&self, _factor: f32) -> bool { - println!("factor: {_factor}"); true } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 15a94c7..4e5200f 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -17,12 +17,12 @@ pixels-renderer = ["dep:pixels"] [dependencies] rand = "0.8.5" -async-ringbuf = "0.1.2" +async-ringbuf = "0.1" futures = "0.3" -itertools = "0.10.5" +itertools = "0.11" serde = { version = "1.0", features = ["derive"] } serde_with = "3.0" -bytemuck = "1.13" +bytemuck = "1.14" num-traits = "0.2" pixels = { version = "0.12", optional = true } ash = { version = "0.37", features = ["linked"], optional = true }