Skip to content

Commit b9fdb38

Browse files
committed
Lock aws-sdk crates to fix MSRV check
1 parent c987d7a commit b9fdb38

File tree

2 files changed

+33
-162
lines changed

2 files changed

+33
-162
lines changed

datafusion-cli/Cargo.lock

Lines changed: 25 additions & 158 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datafusion-cli/Cargo.toml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,14 @@ readme = "README.md"
3131
[dependencies]
3232
arrow = { version = "53.0.0" }
3333
async-trait = "0.1.73"
34-
aws-config = "1.5.5"
35-
aws-sdk-sso = "1.43.0"
36-
aws-sdk-ssooidc = "1.44.0"
37-
aws-sdk-sts = "1.43.0"
34+
## 1.5.13 requires a hiher MSRV 1.81 so lock to 1.5.10 until DataFusion MSRV catches up
35+
aws-config = "=1.5.10"
36+
## 1.53.0 requires a higher MSRV 1.81 so lock to 1.43.0 until DataFusion MSRV catches up
37+
aws-sdk-sso = "=1.50.0"
38+
## 1.54.0 requires a higher MSRV 1.81 so lock to 1.43.0 until DataFusion MSRV catches up
39+
aws-sdk-ssooidc = "=1.51.0"
40+
## 1.54.1 requires a higher MSRV 1.81 so lock to 1.43.0 until DataFusion MSRV catches up
41+
aws-sdk-sts = "=1.51.0"
3842
# end pin aws-sdk crates
3943
aws-credential-types = "1.2.0"
4044
clap = { version = "4.5.16", features = ["derive", "cargo"] }

0 commit comments

Comments
 (0)