mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-02-21 07:06:19 +00:00
deny: Update
This commit is contained in:
parent
eced2006e3
commit
9d394d39ed
1 changed files with 16 additions and 1 deletions
17
deny.toml
17
deny.toml
|
@ -6,7 +6,10 @@ unmaintained = "warn"
|
|||
notice = "warn"
|
||||
ignore = [
|
||||
# ignore because mio/miow still depend on net2, next mio release fixes this
|
||||
"RUSTSEC-2020-0016"
|
||||
"RUSTSEC-2020-0016",
|
||||
# ignore because rusoto_credentials still depends on dirs instead of dirs-next
|
||||
# https://github.com/rusoto/rusoto/pull/1846
|
||||
"RUSTSEC-2020-0053",
|
||||
]
|
||||
|
||||
[licenses]
|
||||
|
@ -111,6 +114,18 @@ version = "0.12"
|
|||
name = "cfg-if"
|
||||
version = "0.1"
|
||||
|
||||
# ignore duplicated pin-project dependency because a futures, hyper and rusoto
|
||||
# still depend on the old version
|
||||
# https://github.com/rust-lang/futures-rs/commit/8a65340675fdf0ba16997cf507ee6bb27d1dcd15
|
||||
# https://github.com/hyperium/hyper/commit/02732bef0c1accb441b9b14c07cb2c494234a682
|
||||
# https://github.com/rusoto/rusoto/pull/1847
|
||||
[[bans.skip]]
|
||||
name = "pin-project"
|
||||
version = "0.4"
|
||||
[[bans.skip]]
|
||||
name = "pin-project-internal"
|
||||
version = "0.4"
|
||||
|
||||
[sources]
|
||||
unknown-registry = "deny"
|
||||
unknown-git = "deny"
|
||||
|
|
Loading…
Reference in a new issue