Skip to content

Commit

Permalink
fix cargo deny issues
Browse files Browse the repository at this point in the history
 - remove claims
  • Loading branch information
jubrad committed Mar 13, 2024
1 parent c0b92c3 commit e7b9df0
Show file tree
Hide file tree
Showing 11 changed files with 1,093 additions and 897 deletions.
1,121 changes: 627 additions & 494 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [

[workspace.package]
edition = "2021"
rust-version = "1.74.0"
rust-version = "1.76.0"


# Use this section only to change the source of dependencies that might
Expand Down
10 changes: 6 additions & 4 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[graph]
targets = [
{ triple = "aarch64-apple-darwin" },
{ triple = "aarch64-unknown-linux-gnu" },
Expand All @@ -6,7 +7,7 @@ targets = [
]

[advisories]
vulnerability = "deny"
version = 2

[bans]
multiple-versions = "deny"
Expand All @@ -20,9 +21,10 @@ skip = [
{ name = "hashbrown", version = "0.12.3" },
{ name = "hashbrown", version = "0.14.0" },
{ name = "nix", version = "0.26.4" },
{ name = "nix", version = "0.27.1" },
{ name = "ordered-float", version = "2.10.0" },
{ name = "ordered-float", version = "3.4.0" },
{ name = "fastrand", version = "2.0.1" },
{ name = "regex-automata", version = "0.4.6" },
{ name = "regex-syntax", version = "0.6.29" },
]

# Use `tracing` instead.
Expand All @@ -35,14 +37,14 @@ name = "env_logger"
name = "rustls"

[licenses]
version = 2
allow = [
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"MIT",
"Unicode-DFS-2016",
]
copyleft = "deny"

[[licenses.clarify]]
name = "ring"
Expand Down
18 changes: 4 additions & 14 deletions eip_operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,10 @@ license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
aws-config = { version = "0.55.1", default-features = false, features = [
"native-tls",
] }
aws-sdk-ec2 = { version = "0.28", default-features = false, features = [
"native-tls",
"rt-tokio",
] }
aws-sdk-servicequotas = { version = "0.28", default-features = false, features = [
"native-tls",
"rt-tokio",
] }
aws-smithy-http = { version = "0.55", default-features = false, features = [
"rt-tokio",
] }
aws-config = { version = "0.101", default-features = false}
aws-sdk-ec2 = { version = "0.38", default-features = false, features = [ "rt-tokio" ] }
aws-sdk-servicequotas = { version = "0.38", default-features = false, features = [ "rt-tokio" ] }
aws-smithy-http = { version = "0.59", default-features = false, features = [ "rt-tokio" ] }
futures = { workspace = true }


Expand Down
Loading

0 comments on commit e7b9df0

Please sign in to comment.