Skip to content

Commit

Permalink
Update deny.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
runtime-shady-backroom committed May 22, 2024
1 parent 2d79d1f commit d688932
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ allow = [
"BSL-1.0", # OSI and FSF approved. Needed by clipboard-win, error-code, str-buf
"CC0-1.0", # FSF but not OSI approved. Needed by hexf-parse
"MPL-2.0", # OSI and FSF approved. Needed by option-ext
"OFL-1.1", # OSI and FSF approved. Needed by iced_wgpu
"OpenSSL", # FSF but not OSI approved. Needed by ring
"Unicode-DFS-2016", # OSI but not FSF approved. Needed by unicode-ident
]
Expand Down Expand Up @@ -219,6 +218,7 @@ skip = [
"core-graphics",
"foreign-types",
"foreign-types-shared",
"jni", # Rust bindings to the JNI
"libloading",
"libredox",
"nix",
Expand All @@ -230,9 +230,10 @@ skip = [
"wayland-protocols",
"wayland-scanner",
"wayland-sys",
"windows",
"windows-sys",
"windows-targets",
"windows", # Safer bindings including C-style APIs as well as COM and WinRT APIs.
"windows-core", # Type support for the windows crate
"windows-sys", # Raw bindings for C-style Windows APIs.
"windows-targets", # Import libs for Windows.
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
Expand All @@ -254,7 +255,7 @@ skip-tree = [

# Allow a few macro helpers. Macros are build-time, so we don't need to worry about duplicates.
"bitflags",
"memoffset",
"cfg_aliases", # A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.
"num_enum",
"proc-macro-crate",
"strum_macros",
Expand Down

0 comments on commit d688932

Please sign in to comment.