1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

cargo deny: ignore children of foreign-types

This commit is contained in:
Emil Ernerfeldt
2023-08-11 16:29:20 +02:00
parent d43fffec45
commit 3431acf879

View File

@@ -35,7 +35,6 @@ deny = [
skip = [
{ name = "arrayvec" }, # old version via tiny-skiaz
{ name = "foreign-types" }, # old version via cocoa, fairly small itself
{ name = "libloading" }, # wgpu-hal itself depends on 0.8 while some of its dependencies, like ash and d3d12, depend on 0.7
{ name = "nix" }, # old version via winit
{ name = "redox_syscall" }, # old version via winit
@@ -48,8 +47,9 @@ skip = [
{ name = "windows" }, # old version via accesskit
]
skip-tree = [
{ name = "criterion" }, # dev-dependency
{ name = "rfd" }, # example dependency
{ name = "criterion" }, # dev-dependency
{ name = "foreign-types" }, # small crate. Old version via cocoa and core-graphics (winit).
{ name = "rfd" }, # example dependency
]