Update dependencies
This commit is contained in:
parent
c33c6d43e6
commit
8597694bcb
4 changed files with 796 additions and 524 deletions
1299
Cargo.lock
generated
1299
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
16
Cargo.toml
16
Cargo.toml
|
@ -12,19 +12,19 @@ render = { path = "crates/render" }
|
||||||
|
|
||||||
cfg-if = "1"
|
cfg-if = "1"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
bytemuck = { version = "1.9.1", features = [ "derive" ] }
|
bytemuck = { version = "1.12", features = [ "derive" ] }
|
||||||
cgmath = "0.18"
|
cgmath = "0.18"
|
||||||
env_logger = "0.9"
|
env_logger = "0.10"
|
||||||
pollster = "0.2"
|
pollster = "0.2"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
rayon = "1.5.3"
|
rayon = "1.6"
|
||||||
tobj = { version = "3.2", features = ["async"]}
|
tobj = { version = "3.2", features = ["async"]}
|
||||||
wgpu = { version = "0.13"}
|
wgpu = { version = "0.14" }
|
||||||
winit = "0.26"
|
winit = "0.27"
|
||||||
instant = "0.1"
|
instant = "0.1"
|
||||||
async-std = "1"
|
async-std = "1"
|
||||||
profiling = "1.0.6"
|
profiling = "1.0"
|
||||||
tracy-client = { git = "https://github.com/nagisa/rust_tracy_client.git", branch = "main" }
|
tracy-client = "0.15"
|
||||||
|
|
||||||
[dependencies.image]
|
[dependencies.image]
|
||||||
version = "0.24"
|
version = "0.24"
|
||||||
|
@ -35,7 +35,7 @@ features = ["png", "jpeg"]
|
||||||
reqwest = { version = "0.11" }
|
reqwest = { version = "0.11" }
|
||||||
console_error_panic_hook = "0.1"
|
console_error_panic_hook = "0.1"
|
||||||
console_log = "0.2"
|
console_log = "0.2"
|
||||||
wgpu = { version = "0.13", features = ["webgl"]}
|
wgpu = { version = "0.14", features = ["webgl"]}
|
||||||
wasm-bindgen = "0.2"
|
wasm-bindgen = "0.2"
|
||||||
wasm-bindgen-futures = "0.4"
|
wasm-bindgen-futures = "0.4"
|
||||||
web-sys = { version = "0.3", features = [
|
web-sys = { version = "0.3", features = [
|
||||||
|
|
|
@ -9,5 +9,5 @@ edition = "2021"
|
||||||
crate_type = ["dylib"]
|
crate_type = ["dylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
winit = "0.26"
|
winit = "0.27"
|
||||||
wgpu = { version = "0.13"}
|
wgpu = { version = "0.14"}
|
|
@ -51,6 +51,7 @@ impl GraphicsRenderer {
|
||||||
width: size.width,
|
width: size.width,
|
||||||
height: size.height,
|
height: size.height,
|
||||||
present_mode: wgpu::PresentMode::Fifo,
|
present_mode: wgpu::PresentMode::Fifo,
|
||||||
|
alpha_mode: wgpu::CompositeAlphaMode::Auto
|
||||||
};
|
};
|
||||||
|
|
||||||
surface.configure(&device, &config);
|
surface.configure(&device, &config);
|
||||||
|
|
Loading…
Reference in a new issue