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 = [
|
|
|
|
]
|
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
|
|
|
|
|
|
|
|
[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 mio-named-pipes via mio depending on old
|
|
|
|
# miow
|
|
|
|
# https://github.com/alexcrichton/mio-named-pipes/issues/7
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "miow"
|
|
|
|
version = "0.2"
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "winapi"
|
|
|
|
version = "0.2"
|
|
|
|
|
|
|
|
# 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"
|
|
|
|
|
|
|
|
# ignore duplicated tokio dep because of gst-plugin-threadshare having its own
|
|
|
|
# fork
|
|
|
|
# https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/118
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "tokio"
|
|
|
|
version = "0.2.13"
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "tokio-macros"
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
# ignore duplicated miniz_oxide dependency because png/tiff depend on an old version
|
|
|
|
# https://github.com/image-rs/image-tiff/pull/76
|
|
|
|
# https://github.com/image-rs/image-png/pull/235
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "miniz_oxide"
|
|
|
|
version = "0.3"
|
|
|
|
|
2020-10-10 08:17:56 +00:00
|
|
|
# ignore duplicated cfg-if dependency because a few dozen dependencies still
|
|
|
|
# pull in the old version
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "0.1"
|
|
|
|
|
2020-11-20 08:03:52 +00:00
|
|
|
# ignore duplicated pin-project-lite dependency because many crates depend on an old version
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "pin-project-lite"
|
|
|
|
version = "0.1"
|
|
|
|
|
|
|
|
# ignore duplicated nom dependency because cexpr depends on an old version
|
|
|
|
# https://github.com/jethrogb/rust-cexpr/issues/26
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "nom"
|
|
|
|
version = "5"
|
|
|
|
|
2021-01-09 10:46:09 +00:00
|
|
|
# ignore duplicated nom dependency because tokio v0.2 depends on an old version
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "bytes"
|
|
|
|
version = "0.5"
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "mio"
|
|
|
|
version = "0.6"
|
|
|
|
|
2021-01-16 08:19:51 +00:00
|
|
|
# ignore duplicated rustc_version dependency because various crates depend on an old version
|
2021-01-09 10:46:09 +00:00
|
|
|
[[bans.skip]]
|
2021-01-16 08:19:51 +00:00
|
|
|
name = "rustc_version"
|
2021-01-09 10:46:09 +00:00
|
|
|
version = "0.2"
|
|
|
|
[[bans.skip]]
|
2021-01-16 08:19:51 +00:00
|
|
|
name = "semver"
|
|
|
|
version = "0.9"
|
2021-01-09 10:46:09 +00:00
|
|
|
[[bans.skip]]
|
2021-01-16 08:19:51 +00:00
|
|
|
name = "semver-parser"
|
|
|
|
version = "0.7"
|
2021-01-09 10:46:09 +00:00
|
|
|
|
2021-03-10 09:07:39 +00:00
|
|
|
# ignore duplicated num-rational dependency because image depends on an old version
|
|
|
|
# https://github.com/image-rs/image/pull/1451
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "num-rational"
|
|
|
|
version = "0.3"
|
|
|
|
|
|
|
|
# ignore duplicated ansi_term dependency because clap depends on an old version
|
|
|
|
# https://github.com/clap-rs/clap/pull/2402
|
|
|
|
[[bans.skip]]
|
|
|
|
name = "ansi_term"
|
|
|
|
version = "0.11"
|
|
|
|
|
2021-04-09 06:38:36 +00:00
|
|
|
# ignore duplicated shlex dependency because rusoto_credentials depends on an old version
|
|
|
|
# https://github.com/rusoto/rusoto/pull/1915
|
2021-03-21 10:57:10 +00:00
|
|
|
[[bans.skip]]
|
2021-04-09 06:38:36 +00:00
|
|
|
name = "shlex"
|
|
|
|
version = "0.1"
|
2021-03-21 10:57:10 +00:00
|
|
|
|
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",
|
2020-04-16 11:03:28 +00:00
|
|
|
"https://github.com/fengalin/tokio",
|
|
|
|
"https://github.com/rust-av/flavors",
|
|
|
|
]
|