Skip to content

Commit 1aa8ebd

Browse files
committed
fix(ci): exclude rusoto/ethers-providers from deny
1 parent f8a07c3 commit 1aa8ebd

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

deny.toml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Temporarily exclude rusoto and ethers-providers from bans since we've yet to transition to the
2+
# Rust AWS SDK.
3+
exclude = ["rusoto_core", "rusoto_kms", "rusoto_credential", "ethers-providers"]
4+
15
# This section is considered when running `cargo deny check advisories`
26
# More documentation for the advisories section can be found here:
37
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
@@ -24,12 +28,19 @@ deny = [
2428
{ name = "openssl" },
2529
]
2630
# Certain crates/versions that will be skipped when doing duplicate detection.
27-
skip = []
31+
skip = [
32+
]
2833
# Similarly to `skip` allows you to skip certain crates during duplicate
2934
# detection. Unlike skip, it also includes the entire tree of transitive
3035
# dependencies starting at the specified crate, up to a certain depth, which is
3136
# by default infinite
32-
skip-tree = []
37+
skip-tree = [
38+
{ name = "rusoto_core", version = "0.48" },
39+
{ name = "rusoto_kms", version = "0.48" },
40+
{ name = "rusoto_credential", version = "0.48" },
41+
42+
]
43+
3344

3445
[licenses]
3546
unlicensed = "deny"
@@ -69,6 +80,7 @@ exceptions = [
6980
{ allow = ["GPL-3.0"], name = "fastrlp" },
7081
{ allow = ["GPL-3.0"], name = "fastrlp-derive" },
7182
]
83+
7284
#copyleft = "deny"
7385

7486
# See note in unicode-ident's readme!

0 commit comments

Comments
 (0)