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

deny.toml - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e2681afcaf2aad6fb97eab2d67606b9188d17c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[advisories]
db-path = "~/.cargo/advisory-db"
db-url = "https://github.com/rustsec/advisory-db"
vulnerability = "deny"
unmaintained = "warn"
notice = "warn"
ignore = []

[licenses]
unlicensed = "deny"
allow = [
  "Apache-2.0",
]
deny = [
  "GPL-1.0",
  "GPL-2.0",
  "GPL-3.0",
  "AGPL-1.0",
  "AGPL-3.0",
]
copyleft = "allow"
allow-osi-fsf-free = "either"
confidence-threshold = 0.8

[bans]
multiple-versions = "deny"
highlight = "all"

skip-tree = [
  # Need to upgrade rusoto dep: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/312
  { name = "gst-plugin-rusoto" },
  { name = "rusoto_core" },
  # Metadeps needs to update error-chain: https://github.com/joshtriplett/metadeps/pull/12
  { name = "metadeps", depth = 2 },
]

[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-git = [
  "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs",
  "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys",
  "https://github.com/gtk-rs/sys",
  "https://github.com/gtk-rs/glib",
  "https://github.com/gtk-rs/gio",
  "https://github.com/gtk-rs/cairo",
  "https://github.com/gtk-rs/pango",
  "https://github.com/gtk-rs/atk",
  "https://github.com/gtk-rs/gdk-pixbuf",
  "https://github.com/gtk-rs/gdk",
  "https://github.com/gtk-rs/gtk",
  "https://github.com/fengalin/tokio",
  "https://github.com/rust-av/flavors",
]