cleaning + package versions
This commit is contained in:
parent
82992436d8
commit
4a5ab2a90a
5 changed files with 9 additions and 10 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -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",
|
||||
]
|
||||
|
|
|
@ -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 }
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -74,7 +74,6 @@ impl Editor for Emulator {
|
|||
}
|
||||
|
||||
fn set_scale_factor(&self, _factor: f32) -> bool {
|
||||
println!("factor: {_factor}");
|
||||
true
|
||||
}
|
||||
|
||||
|
|
|
@ -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 }
|
||||
|
|
Loading…
Add table
Reference in a new issue