Update all deps
This commit is contained in:
parent
2034f7934b
commit
16613fb982
File diff suppressed because it is too large
Load Diff
18
Cargo.toml
18
Cargo.toml
|
|
@ -16,11 +16,11 @@ bytemuck = { version = "1", features = ["derive"] }
|
||||||
clap = { version = "4", features = ["derive"] }
|
clap = { version = "4", features = ["derive"] }
|
||||||
cpal = { git = "https://github.com/sidit77/cpal.git", rev = "66ed6be" }
|
cpal = { git = "https://github.com/sidit77/cpal.git", rev = "66ed6be" }
|
||||||
directories = "6"
|
directories = "6"
|
||||||
egui = { version = "0.32", features = ["serde"] }
|
egui = { version = "0.33", features = ["serde"] }
|
||||||
egui_extras = { version = "0.32", features = ["image"] }
|
egui_extras = { version = "0.33", features = ["image"] }
|
||||||
egui-notify = "0.20"
|
egui-notify = "0.21"
|
||||||
egui-winit = "0.32"
|
egui-winit = "0.33"
|
||||||
egui-wgpu = { version = "0.32", features = ["winit"] }
|
egui-wgpu = { version = "0.33", features = ["winit"] }
|
||||||
fxprof-processed-profile = "0.8"
|
fxprof-processed-profile = "0.8"
|
||||||
fixed = { version = "1.28", features = ["num-traits"] }
|
fixed = { version = "1.28", features = ["num-traits"] }
|
||||||
gilrs = { version = "0.11", features = ["serde-serialize"] }
|
gilrs = { version = "0.11", features = ["serde-serialize"] }
|
||||||
|
|
@ -32,7 +32,7 @@ normpath = "1"
|
||||||
notify = "8"
|
notify = "8"
|
||||||
num-derive = "0.4"
|
num-derive = "0.4"
|
||||||
num-traits = "0.2"
|
num-traits = "0.2"
|
||||||
object = "0.37"
|
object = "0.38"
|
||||||
oneshot = "0.1"
|
oneshot = "0.1"
|
||||||
pollster = "0.4"
|
pollster = "0.4"
|
||||||
rand = "0.9"
|
rand = "0.9"
|
||||||
|
|
@ -41,16 +41,16 @@ rtrb = "0.3"
|
||||||
rubato = "0.16"
|
rubato = "0.16"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
thread-priority = "2"
|
thread-priority = "3"
|
||||||
tokio = { version = "1", features = ["io-util", "macros", "net", "rt", "sync", "time"] }
|
tokio = { version = "1", features = ["io-util", "macros", "net", "rt", "sync", "time"] }
|
||||||
tracing = { version = "0.1", features = ["release_max_level_info"] }
|
tracing = { version = "0.1", features = ["release_max_level_info"] }
|
||||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
wgpu = "25"
|
wgpu = "27"
|
||||||
wholesym = "0.8"
|
wholesym = "0.8"
|
||||||
winit = { version = "0.30", features = ["serde"] }
|
winit = { version = "0.30", features = ["serde"] }
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
windows = { version = "0.61", features = ["Win32_System_Threading"] }
|
windows = { version = "0.62", features = ["Win32_System_Threading"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
cc = "1"
|
cc = "1"
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ RUN apt-get update && \
|
||||||
ln -s $(which ld64.lld-20) /usr/bin/ld64.lld && \
|
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
|
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
|
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
|
COPY llvm.sources /etc/apt/sources.list.d/llvm.sources
|
||||||
RUN rustup target add x86_64-pc-windows-msvc && \
|
RUN rustup target add x86_64-pc-windows-msvc && \
|
||||||
|
|
|
||||||
|
|
@ -449,13 +449,12 @@ impl Viewport {
|
||||||
..egui_wgpu::WgpuConfiguration::default()
|
..egui_wgpu::WgpuConfiguration::default()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let options = egui_wgpu::RendererOptions::default();
|
||||||
let mut painter = pollster::block_on(egui_wgpu::winit::Painter::new(
|
let mut painter = pollster::block_on(egui_wgpu::winit::Painter::new(
|
||||||
ctx.clone(),
|
ctx.clone(),
|
||||||
wgpu_config,
|
wgpu_config,
|
||||||
1,
|
|
||||||
None,
|
|
||||||
false,
|
false,
|
||||||
true,
|
options,
|
||||||
));
|
));
|
||||||
|
|
||||||
let mut info = ViewportInfo::default();
|
let mut info = ViewportInfo::default();
|
||||||
|
|
@ -554,7 +553,7 @@ impl Viewport {
|
||||||
&mut self.info,
|
&mut self.info,
|
||||||
std::mem::take(&mut self.commands),
|
std::mem::take(&mut self.commands),
|
||||||
&self.window,
|
&self.window,
|
||||||
&mut HashSet::default(),
|
&mut vec![],
|
||||||
);
|
);
|
||||||
|
|
||||||
if self.info.close_requested() {
|
if self.info.close_requested() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue