Skip to content

Commit

Permalink
Update cargo deny configuration (bevyengine#8734)
Browse files Browse the repository at this point in the history
# Objective

- Make the dependency job successful again

## Solution

- Update the list of duplicates
- Remove a security issue exception not needed anymore
- Also update a dependency that was missed by dependabot
  • Loading branch information
mockersf authored Jun 1, 2023
1 parent acf1362 commit 70aee72
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
2 changes: 1 addition & 1 deletion crates/bevy_diagnostic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
29 changes: 22 additions & 7 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit 70aee72

Please sign in to comment.