diff --git a/deny.toml b/deny.toml index e6b5472a..8f14b7e9 100644 --- a/deny.toml +++ b/deny.toml @@ -5,6 +5,8 @@ vulnerability = "deny" unmaintained = "warn" notice = "warn" ignore = [ + # Waiting for https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1293 + "RUSTSEC-2023-0065", # Waiting for https://github.com/librespot-org/librespot/issues/937 "RUSTSEC-2021-0059", "RUSTSEC-2021-0060", @@ -38,6 +40,12 @@ license-files = [ { path = "LICENSE", hash = 0xbd0eed23 } ] +# Allow AGPL3 from dssim-core, which is optionally used in gst-plugin-videofx +[[licenses.exceptions]] +allow = ["AGPL-3.0"] +name = "dssim-core" +version = "3.2" + [bans] multiple-versions = "deny" highlight = "all" @@ -162,6 +170,12 @@ version = "0.1" name = "tungstenite" version = "0.19" +# proc-macro-crate depends on an old version of toml_edit +# https://github.com/bkchr/proc-macro-crate/pull/38 +[[bans.skip]] +name = "toml_edit" +version = "0.19" + [sources] unknown-registry = "deny" unknown-git = "deny"