Update all deps

This commit is contained in:
Simon Gellis 2025-11-23 16:13:12 -05:00
parent 2034f7934b
commit 16613fb982
4 changed files with 930 additions and 794 deletions

1697
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -16,11 +16,11 @@ bytemuck = { version = "1", features = ["derive"] }
clap = { version = "4", features = ["derive"] }
cpal = { git = "https://github.com/sidit77/cpal.git", rev = "66ed6be" }
directories = "6"
egui = { version = "0.32", features = ["serde"] }
egui_extras = { version = "0.32", features = ["image"] }
egui-notify = "0.20"
egui-winit = "0.32"
egui-wgpu = { version = "0.32", features = ["winit"] }
egui = { version = "0.33", features = ["serde"] }
egui_extras = { version = "0.33", features = ["image"] }
egui-notify = "0.21"
egui-winit = "0.33"
egui-wgpu = { version = "0.33", features = ["winit"] }
fxprof-processed-profile = "0.8"
fixed = { version = "1.28", features = ["num-traits"] }
gilrs = { version = "0.11", features = ["serde-serialize"] }
@ -32,7 +32,7 @@ normpath = "1"
notify = "8"
num-derive = "0.4"
num-traits = "0.2"
object = "0.37"
object = "0.38"
oneshot = "0.1"
pollster = "0.4"
rand = "0.9"
@ -41,16 +41,16 @@ rtrb = "0.3"
rubato = "0.16"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thread-priority = "2"
thread-priority = "3"
tokio = { version = "1", features = ["io-util", "macros", "net", "rt", "sync", "time"] }
tracing = { version = "0.1", features = ["release_max_level_info"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
wgpu = "25"
wgpu = "27"
wholesym = "0.8"
winit = { version = "0.30", features = ["serde"] }
[target.'cfg(windows)'.dependencies]
windows = { version = "0.61", features = ["Win32_System_Threading"] }
windows = { version = "0.62", features = ["Win32_System_Threading"] }
[build-dependencies]
cc = "1"

View File

@ -16,7 +16,7 @@ RUN apt-get update && \
ln -s $(which ld64.lld-20) /usr/bin/ld64.lld && \
SDK_VERSION=14.5 UNATTENDED=1 ENABLE_COMPILER_RT_INSTALL=1 TARGET_DIR=/osxcross ./build.sh
FROM rust:1.90-bookworm
FROM rust:1.91-bookworm
ADD --chmod=644 "https://apt.llvm.org/llvm-snapshot.gpg.key" /etc/apt/trusted.gpg.d/apt.llvm.org.asc
COPY llvm.sources /etc/apt/sources.list.d/llvm.sources
RUN rustup target add x86_64-pc-windows-msvc && \

View File

@ -449,13 +449,12 @@ impl Viewport {
..egui_wgpu::WgpuConfiguration::default()
};
let options = egui_wgpu::RendererOptions::default();
let mut painter = pollster::block_on(egui_wgpu::winit::Painter::new(
ctx.clone(),
wgpu_config,
1,
None,
false,
true,
options,
));
let mut info = ViewportInfo::default();
@ -554,7 +553,7 @@ impl Viewport {
&mut self.info,
std::mem::take(&mut self.commands),
&self.window,
&mut HashSet::default(),
&mut vec![],
);
if self.info.close_requested() {