diff --git a/Cargo.lock b/Cargo.lock index d1f9185e..f522d6e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3549,6 +3549,12 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3" +[[package]] +name = "pollster" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc6355899e1c9462875b6757c79f3caa011a1fdae12bbb1a2e72dd1f234f8336" + [[package]] name = "polycool" version = "0.4.0" @@ -4034,7 +4040,7 @@ dependencies = [ "objc2-core-foundation", "objc2-foundation 0.3.2", "percent-encoding", - "pollster", + "pollster 0.4.0", "raw-window-handle", "wasm-bindgen", "wasm-bindgen-futures", @@ -4257,7 +4263,7 @@ dependencies = [ "log", "ndk", "ndk-context", - "pollster", + "pollster 1.0.1", "raw-window-handle", "rustynes-gfx-shaders", "rustynes-mobile", @@ -4339,7 +4345,7 @@ dependencies = [ "md-5", "naga", "png", - "pollster", + "pollster 1.0.1", "ratatui", "rfd", "rustynes-cheevos", @@ -4389,7 +4395,7 @@ dependencies = [ "bytemuck", "cpal", "log", - "pollster", + "pollster 1.0.1", "raw-window-handle", "rustynes-gfx-shaders", "rustynes-mobile", diff --git a/crates/rustynes-android/Cargo.toml b/crates/rustynes-android/Cargo.toml index bfe187f4..e2cb6a79 100644 --- a/crates/rustynes-android/Cargo.toml +++ b/crates/rustynes-android/Cargo.toml @@ -45,7 +45,7 @@ android_logger = "0.15" # `AndroidNdk` window handle wgpu needs. wgpu = "29" raw-window-handle = "0.6" -pollster = "0.4" +pollster = "1.0" bytemuck = { version = "1", features = ["derive"] } # Shared CRT/scanline WGSL (single source of truth with the desktop frontend). rustynes-gfx-shaders.workspace = true diff --git a/crates/rustynes-frontend/Cargo.toml b/crates/rustynes-frontend/Cargo.toml index 221f131b..e5a5e956 100644 --- a/crates/rustynes-frontend/Cargo.toml +++ b/crates/rustynes-frontend/Cargo.toml @@ -232,7 +232,7 @@ sha2.workspace = true # Frontend-only utilities. Both already in the dependency tree as # transitive deps of wgpu; adding them as direct deps is free. -pollster = "0.4" +pollster = "1.0" bytemuck = "1" web-time.workspace = true diff --git a/crates/rustynes-ios/Cargo.toml b/crates/rustynes-ios/Cargo.toml index 0ef26fe4..b8058433 100644 --- a/crates/rustynes-ios/Cargo.toml +++ b/crates/rustynes-ios/Cargo.toml @@ -44,7 +44,7 @@ log = "0.4" [target.'cfg(target_os = "ios")'.dependencies] wgpu = "29" raw-window-handle = "0.6" -pollster = "0.4" +pollster = "1.0" bytemuck = { version = "1", features = ["derive"] } cpal = "0.18" # Shared CRT/scanline/NTSC WGSL (single source of truth with the desktop