diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 03dfd85853..461efa7819 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -30,4 +30,4 @@ sysinfo = { version = "0.29.0", default-features = false, features = [ # Only include when not bevy_dynamic_plugin and on linux/windows/android [target.'cfg(any(target_os = "linux", target_os = "windows", target_os = "android"))'.dependencies] -sysinfo = { version = "0.28.1", default-features = false } +sysinfo = { version = "0.29.0", default-features = false } diff --git a/deny.toml b/deny.toml index 9f3571838a..928cfeb92a 100644 --- a/deny.toml +++ b/deny.toml @@ -6,7 +6,6 @@ unmaintained = "deny" yanked = "deny" notice = "deny" ignore = [ - "RUSTSEC-2022-0048", # from xml-rs 0.8.4 - unmaintained - it's used in a build script of winit ] [licenses] @@ -34,12 +33,28 @@ wildcards = "deny" highlight = "all" # Certain crates/versions that will be skipped when doing duplicate detection. skip = [ - { name = "core-foundation-sys", version = "0.6" }, # from cpal v0.15.0 - { name = "jni", version = "0.19" }, # from cpal v0.15.0 - { name = "nix", version = "0.24" }, # from cpal v0.15.0 - { name = "redox_syscall", version = "0.2" }, # from notify v5.1.0 - { name = "windows-sys", version = "0.42" }, # from notify v5.1.0 - { name = "windows", version = "0.43"}, # from gilrs v0.10.1 + { name = "ahash", version = "0.7" }, + { name = "bitflags", version = "1.3" }, + { name = "core-foundation-sys", version = "0.6" }, + { name = "jni", version = "0.19" }, + { name = "hashbrown", version = "0.12"}, + { name = "libloading", version = "0.7"}, + { name = "miniz_oxide", version = "0.6"}, + { name = "nix", version = "0.24" }, + { name = "redox_syscall", version = "0.2" }, + { name = "regex-syntax", version = "0.6"}, + { name = "syn", version = "1.0"}, + { name = "windows", version = "0.44"}, + { name = "windows", version = "0.46"}, + { name = "windows-sys", version = "0.45" }, + { name = "windows-targets", version = "0.42"}, + { name = "windows_aarch64_gnullvm", version = "0.42"}, + { name = "windows_aarch64_msvc", version = "0.42"}, + { name = "windows_i686_gnu", version = "0.42"}, + { name = "windows_i686_msvc", version = "0.42"}, + { name = "windows_x86_64_gnu", version = "0.42"}, + { name = "windows_x86_64_gnullvm", version = "0.42"}, + { name = "windows_x86_64_msvc", version = "0.42"}, ] [sources]