Skip to content

Commit

Permalink
Cleanup Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
delsner committed Jan 12, 2025
1 parent 0d941e9 commit 9a581e6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
13 changes: 9 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,15 @@ getrandom = { version = "0.2.15", default-features = false }
glob = "0.3.2"
google-cloud-auth = { version = "0.17.2", default-features = false }
google-cloud-token = "0.1.2"
aws-config = "1.5.12"
aws-sdk-s3 = "1.67.0"
aws-runtime = "1.5.2"
aws-config = { version = "1.5.13", default-features = false, features = [
"rt-tokio",
"rustls",
] }
aws-sdk-s3 = { version = "1.68.0", default-features = false, features = [
"rt-tokio",
"rustls",
"sigv4a",
] }
hex = "0.4.3"
hex-literal = "0.4.1"
http = "1.2"
Expand Down Expand Up @@ -129,7 +135,6 @@ serde-value = "0.7.0"
serde_with = "3.12.0"
serde_yaml = "0.9.34"
serde-untagged = "0.1.6"
serial_test = "0.4.0"
sha2 = "0.10.8"
shlex = "1.3.0"
similar-asserts = "1.6.0"
Expand Down
3 changes: 1 addition & 2 deletions crates/rattler_networking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default = ["native-tls", "s3"]
native-tls = ["reqwest/native-tls", "google-cloud-auth?/default-tls"]
rustls-tls = ["reqwest/rustls-tls", "google-cloud-auth?/rustls-tls"]
gcs = ["google-cloud-auth", "google-cloud-token"]
s3 = ["aws-config", "aws-sdk-s3", "aws-runtime"]
s3 = ["aws-config", "aws-sdk-s3"]

[dependencies]
anyhow = { workspace = true }
Expand All @@ -28,7 +28,6 @@ google-cloud-auth = { workspace = true, optional = true }
google-cloud-token = { workspace = true, optional = true }
aws-config = { workspace = true, optional = true }
aws-sdk-s3 = { workspace = true, optional = true }
aws-runtime = { workspace = true, optional = true }
http = { workspace = true }
itertools = { workspace = true }
keyring = { workspace = true, features = [
Expand Down

0 comments on commit 9a581e6

Please sign in to comment.