Skip to content

Commit 383e0f3

Browse files
committed
Fix deny config
1 parent f5717d0 commit 383e0f3

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ default-features = false
3636
features = ["rustls-tls"]
3737

3838
[dev-dependencies.tokio]
39-
version = "1"
39+
version = "1.0"
4040
features = ["macros", "rt-multi-thread"]
4141

4242
[features]

deny.toml

+1-8
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ targets = [
88
[advisories]
99
unmaintained = "deny"
1010
ignore = [
11-
# net2 is deprecated in favor of socket2
12-
# but hyper, mio, miow crates are still using net2
13-
"RUSTSEC-2020-0016",
1411
]
1512

1613
[bans]
@@ -22,16 +19,12 @@ deny = [
2219
skip = [
2320
# rustls depends on an old version
2421
{ name = "base64", version = "=0.12.3" },
25-
{ name = "pin-project-lite", version = "=0.1.11" },
26-
27-
# mio uses an ancient version of winapi
28-
{ name = "winapi", version = "=0.2.8" },
2922

3023
# most crates still reference the pre 1.0 version
3124
{ name = "cfg-if", version = "=0.1.10" },
3225
]
3326
skip-tree = [
34-
# hyper uses an outdated version, hopefully fixed in the tokio 0.3 bump
27+
# hyper (via h2) uses an outdated version
3528
{ name = "pin-project", version = "=0.4.27" },
3629
]
3730

0 commit comments

Comments
 (0)