mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -04:00
Update windows-sys, some locked versions to reduce deps, deny exceptions
This commit is contained in:
727
Cargo.lock
727
Cargo.lock
File diff suppressed because it is too large
Load Diff
@@ -82,7 +82,7 @@ glutin = "0.32.0"
|
||||
glutin-winit = "0.5.0"
|
||||
home = "0.5.9"
|
||||
image = { version = "0.25", default-features = false }
|
||||
kittest = { git = "https://github.com/rerun-io/kittest", version = "0.1", branch = "main"}
|
||||
kittest = { git = "https://github.com/rerun-io/kittest", version = "0.1", branch = "main" }
|
||||
log = { version = "0.4", features = ["std"] }
|
||||
nohash-hasher = "0.2"
|
||||
parking_lot = "0.12"
|
||||
@@ -98,7 +98,7 @@ wasm-bindgen = "0.2"
|
||||
wasm-bindgen-futures = "0.4"
|
||||
web-sys = "0.3.70"
|
||||
wgpu = { version = "23.0.0", default-features = false }
|
||||
windows-sys = "0.52"
|
||||
windows-sys = "0.59"
|
||||
winit = { version = "0.30.5", default-features = false }
|
||||
|
||||
[workspace.lints.rust]
|
||||
|
||||
17
deny.toml
17
deny.toml
@@ -31,11 +31,9 @@ all-features = true
|
||||
[advisories]
|
||||
version = 2
|
||||
ignore = [
|
||||
"RUSTSEC-2024-0320", # unmaintaines yaml-rust pulled in by syntect
|
||||
{ name = "async-process" }, # yanked crated pulled in by old accesskit
|
||||
"RUSTSEC-2024-0320", # unmaintaines yaml-rust pulled in by syntect
|
||||
]
|
||||
|
||||
|
||||
[bans]
|
||||
multiple-versions = "deny"
|
||||
wildcards = "deny"
|
||||
@@ -46,27 +44,22 @@ deny = [
|
||||
]
|
||||
|
||||
skip = [
|
||||
{ name = "bit-set" }, # wgpu's naga depends on 0.6, syntect's (used by egui_extras) fancy-regex depends on 0.5
|
||||
{ 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, …
|
||||
{ name = "cfg_aliases" }, # old version via wgpu
|
||||
{ name = "event-listener" }, # TODO(emilk): rustls pulls in two versions of this 😭
|
||||
{ name = "futures-lite" }, # old version via accesskit_unix and zbus
|
||||
{ name = "memoffset" }, # tiny dependency
|
||||
{ name = "ndk-sys" }, # old version via wgpu, winit uses newer version
|
||||
{ name = "quick-xml" }, # old version via wayland-scanner
|
||||
{ name = "redox_syscall" }, # old version via winit
|
||||
{ name = "time" }, # old version pulled in by unmaintianed crate 'chrono'
|
||||
{ name = "windows-core" }, # old version via accesskit_windows
|
||||
{ name = "windows" }, # old version via accesskit_windows
|
||||
{ name = "glow" }, # wgpu uses an old `glow`, but realistically no one uses _both_ `egui_wgpu` and `egui_glow`, so we won't get a duplicate dependency
|
||||
{ name = "windows-core" }, # Chrono pulls in 0.51, accesskit uses 0.58.0
|
||||
{ name = "windows-sys" }, # glutin pulls in 0.52.0, accesskit pulls in 0.59.0, rfd pulls 0.48, webbrowser pulls 0.45.0 (via jni)
|
||||
]
|
||||
skip-tree = [
|
||||
{ name = "criterion" }, # dev-dependency
|
||||
{ name = "fastrand" }, # old version via accesskit_unix
|
||||
{ name = "foreign-types" }, # small crate. Old version via core-graphics (winit).
|
||||
{ name = "objc2" }, # old version via accesskit_macos
|
||||
{ name = "polling" }, # old version via accesskit_unix
|
||||
{ name = "rfd" }, # example dependency
|
||||
]
|
||||
|
||||
@@ -110,5 +103,5 @@ unknown-registry = "deny"
|
||||
unknown-git = "deny"
|
||||
|
||||
allow-git = [
|
||||
"https://github.com/rerun-io/kittest", # TODO(lucasmerlin): remove this once the kittest crate is published"
|
||||
"https://github.com/rerun-io/kittest", # TODO(lucasmerlin): remove this once the kittest crate is published"
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user