cleaning + package versions

This commit is contained in:
Alex Janka 2023-10-04 11:54:40 +11:00
parent 82992436d8
commit 4a5ab2a90a
5 changed files with 9 additions and 10 deletions

4
Cargo.lock generated
View file

@ -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",
]

View file

@ -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 }

View file

@ -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"

View file

@ -74,7 +74,6 @@ impl Editor for Emulator {
}
fn set_scale_factor(&self, _factor: f32) -> bool {
println!("factor: {_factor}");
true
}

View file

@ -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 }