2020-04-16 11:03:28 +00:00
|
|
|
[advisories]
|
|
|
|
db-path = "~/.cargo/advisory-db"
|
2020-11-20 08:03:52 +00:00
|
|
|
db-urls = ["https://github.com/rustsec/advisory-db"]
|
2020-04-16 11:03:28 +00:00
|
|
|
vulnerability = "deny"
|
|
|
|
unmaintained = "warn"
|
|
|
|
notice = "warn"
|
2020-06-05 09:33:13 +00:00
|
|
|
ignore = [
|
2022-01-12 15:47:47 +00:00
|
|
|
# Waiting for https://github.com/librespot-org/librespot/issues/937
|
|
|
|
"RUSTSEC-2021-0059",
|
|
|
|
"RUSTSEC-2021-0060",
|
|
|
|
"RUSTSEC-2021-0061",
|
2022-06-06 08:58:46 +00:00
|
|
|
# https://github.com/chronotope/chrono/issues/499
|
|
|
|
"RUSTSEC-2020-0071",
|
2020-06-05 09:33:13 +00:00
|
|
|
]
|
2020-04-16 11:03:28 +00:00
|
|
|
|
|
|
|
[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
|
|
|
|
|
2021-12-09 10:04:11 +00:00
|
|
|
[[licenses.clarify]]
|
2022-06-21 06:44:57 +00:00
|
|
|
name = "ring"
|
2021-12-09 10:04:11 +00:00
|
|
|
version = "*"
|
2022-06-21 06:44:57 +00:00
|
|
|
expression = "OpenSSL"
|
2021-12-09 10:04:11 +00:00
|
|
|
license-files = [
|
2022-06-21 06:44:57 +00:00
|
|
|
{ path = "LICENSE", hash = 0xbd0eed23 }
|
2021-12-09 10:04:11 +00:00
|
|
|
]
|
|
|
|
|
2020-04-16 11:03:28 +00:00
|
|
|
[bans]
|
2020-04-28 10:16:08 +00:00
|
|
|
multiple-versions = "deny"
|
2020-04-16 11:03:28 +00:00
|
|
|
highlight = "all"
|
2020-08-10 06:51:52 +00:00
|
|
|
wildcards = "allow"
|
2020-04-16 11:03:28 +00:00
|
|
|
|
2020-05-29 09:22:52 +00:00
|
|
|
# ignore duplicated deps because of chrono, cookie, cookie_store, hyper,
|
|
|
|
# hyperx, reqwest depending on old time
|
|
|
|
# https://github.com/chronotope/chrono/issues/400
|
|
|
|
# https://github.com/pfernie/cookie_store/issues/11
|
|
|
|
# https://github.com/hyperium/hyper/pull/2139
|
|
|
|
# https://github.com/dekellum/hyperx/issues/21
|
|
|
|
# https://github.com/seanmonstar/reqwest/issues/934
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "time"
|
|
|
|
version = "0.1"
|
|
|
|
|
2020-06-30 08:02:23 +00:00
|
|
|
# ignore duplicated textwrap dependency because clap depends on an old version
|
|
|
|
# https://github.com/clap-rs/clap/pull/1994
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "textwrap"
|
|
|
|
version = "0.11"
|
|
|
|
|
2021-06-08 05:52:31 +00:00
|
|
|
# ignore duplicated rustc_version dependency because rav1e depends on an old version
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "rustc_version"
|
|
|
|
version = "0.3"
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "semver"
|
|
|
|
version = "0.11"
|
|
|
|
|
2021-09-01 05:58:59 +00:00
|
|
|
# ignore duplicated system-deps dependency because dav1d depends on an old version
|
2021-08-26 06:24:54 +00:00
|
|
|
[[bans.skip]]
|
2021-09-01 05:58:59 +00:00
|
|
|
name = "system-deps"
|
|
|
|
version = "3"
|
2021-11-18 19:44:09 +00:00
|
|
|
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "version-compare"
|
|
|
|
version = "0.0"
|
|
|
|
|
2021-09-01 05:58:59 +00:00
|
|
|
[[bans.skip]]
|
|
|
|
name = "cfg-expr"
|
2021-11-17 08:16:18 +00:00
|
|
|
version = "0.7"
|
2021-08-26 06:24:54 +00:00
|
|
|
|
2021-09-11 05:45:25 +00:00
|
|
|
# ignore duplicated crc dependency because ffv1 depends on an old version
|
|
|
|
# https://github.com/rust-av/ffv1/issues/21
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "crc"
|
|
|
|
version = "1.8"
|
|
|
|
|
2021-12-18 08:08:48 +00:00
|
|
|
# ignore duplicated heck dependency because various crates depend on an old version
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "heck"
|
|
|
|
version = "0.3"
|
|
|
|
|
2022-02-12 10:40:00 +00:00
|
|
|
# ignore duplicated sha-1/digest/block-buffer dependencies because librespot depends on an old version
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "block-buffer"
|
|
|
|
version = "0.9"
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "digest"
|
|
|
|
version = "0.9"
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "sha-1"
|
|
|
|
version = "0.9"
|
|
|
|
|
2022-03-14 09:49:04 +00:00
|
|
|
# ignore duplicated wasi dependency because various crates depends on an old version
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "wasi"
|
|
|
|
version = "0.10"
|
|
|
|
|
2022-06-21 06:44:57 +00:00
|
|
|
# ignore duplicated hashbrown dependency because publicsuffix depends on an old version
|
|
|
|
# https://github.com/rushmorem/publicsuffix/pull/36
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "hashbrown"
|
|
|
|
version = "0.11"
|
|
|
|
|
2020-04-16 11:03:28 +00:00
|
|
|
[sources]
|
|
|
|
unknown-registry = "deny"
|
|
|
|
unknown-git = "deny"
|
|
|
|
allow-git = [
|
|
|
|
"https://gitlab.freedesktop.org/gstreamer/gstreamer-rs",
|
2021-05-14 07:47:52 +00:00
|
|
|
"https://github.com/gtk-rs/gtk-rs-core",
|
2021-10-14 07:03:17 +00:00
|
|
|
"https://github.com/gtk-rs/gtk4-rs",
|
2021-09-10 06:20:31 +00:00
|
|
|
"https://github.com/rust-av/ffv1",
|
2020-04-16 11:03:28 +00:00
|
|
|
"https://github.com/rust-av/flavors",
|
|
|
|
]
|