Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-10-02 09:29:39 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-10-02 09:29:39 +0300
commit95581d7fbcb0670f9f7a01fdc9970d2d272a8420 (patch)
treede63e74c220ae795b9781c7386efbd26ab94b5fb
parent436798b3609eea716d8796c42e446a0d19abcfd9 (diff)
deny: Update with some new overrides
-rw-r--r--deny.toml14
1 files changed, 14 insertions, 0 deletions
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"