mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-02 23:38:45 +00:00
deny: Update with some new overrides
This commit is contained in:
parent
436798b360
commit
95581d7fbc
1 changed files with 14 additions and 0 deletions
14
deny.toml
14
deny.toml
|
@ -5,6 +5,8 @@ vulnerability = "deny"
|
||||||
unmaintained = "warn"
|
unmaintained = "warn"
|
||||||
notice = "warn"
|
notice = "warn"
|
||||||
ignore = [
|
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
|
# Waiting for https://github.com/librespot-org/librespot/issues/937
|
||||||
"RUSTSEC-2021-0059",
|
"RUSTSEC-2021-0059",
|
||||||
"RUSTSEC-2021-0060",
|
"RUSTSEC-2021-0060",
|
||||||
|
@ -38,6 +40,12 @@ license-files = [
|
||||||
{ path = "LICENSE", hash = 0xbd0eed23 }
|
{ 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]
|
[bans]
|
||||||
multiple-versions = "deny"
|
multiple-versions = "deny"
|
||||||
highlight = "all"
|
highlight = "all"
|
||||||
|
@ -162,6 +170,12 @@ version = "0.1"
|
||||||
name = "tungstenite"
|
name = "tungstenite"
|
||||||
version = "0.19"
|
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]
|
[sources]
|
||||||
unknown-registry = "deny"
|
unknown-registry = "deny"
|
||||||
unknown-git = "deny"
|
unknown-git = "deny"
|
||||||
|
|
Loading…
Reference in a new issue