Update some crates (#5337)

This commit is contained in:
Emil Ernerfeldt 2024-11-01 13:07:01 +01:00 committed by GitHub
parent 67c82ed5f2
commit 42652e223c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 406 additions and 431 deletions

File diff suppressed because it is too large Load Diff

View File

@ -76,7 +76,7 @@ backtrace = "0.3"
bytemuck = "1.7.2"
criterion = { version = "0.5.1", default-features = false }
dify = { version = "0.7", default-features = false }
document-features = " 0.2.8"
document-features = "0.2.10"
glow = "0.14"
glutin = "0.32.0"
glutin-winit = "0.5.0"
@ -86,17 +86,18 @@ kittest = { git = "https://github.com/rerun-io/kittest", version = "0.1", branch
log = { version = "0.4", features = ["std"] }
nohash-hasher = "0.2"
parking_lot = "0.12"
pollster = "0.3"
pollster = "0.4"
puffin = "0.19"
puffin_http = "0.16"
ron = "0.8"
raw-window-handle = "0.6.0"
ron = "0.8"
serde = { version = "1", features = ["derive"] }
thiserror = "1.0.37"
web-time = "1.1.0" # Timekeeping for native and web
type-map = "0.5.0"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = "0.3.70"
web-time = "1.1.0" # Timekeeping for native and web
wgpu = { version = "23.0.0", default-features = false }
windows-sys = "0.59"
winit = { version = "0.30.5", default-features = false }

View File

@ -152,7 +152,7 @@ winit = { workspace = true, default-features = false, features = ["rwh_06"] }
egui-wgpu = { workspace = true, optional = true, features = [
"winit",
] } # if wgpu is used, use it with winit
pollster = { version = "0.3", optional = true } # needed for wgpu
pollster = { workspace = true, optional = true } # needed for wgpu
# we can expose these to user so that they can select which backends they want to enable to avoid compiling useless deps.
# this can be done at the same time we expose x11/wayland features of winit crate.

View File

@ -61,7 +61,7 @@ bytemuck.workspace = true
document-features.workspace = true
log.workspace = true
thiserror.workspace = true
type-map = "0.5.0"
type-map.workspace = true
web-time.workspace = true
wgpu = { workspace = true, features = ["wgsl"] }

View File

@ -44,6 +44,7 @@ deny = [
]
skip = [
{ name = "base64" }, # Pretty small
{ name = "bit-set" }, # wgpu's naga depends on 0.8, syntect's (used by egui_extras) fancy-regex depends on 0.5
{ name = "bit-vec" }, # dependency of bit-set in turn, different between 0.6 and 0.5
{ name = "bitflags" }, # old 1.0 version via glutin, png, spirv, …