Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hack: use a forked deltalake-aws with the appropriate bug fixes for assume role #197

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ uuid = { version = "0.8", features = ["serde", "v4"] }
url = "2.3"

# datafusion feature is required for writer version 2
deltalake-core = { version = "0.19.1", features = ["json", "datafusion"]}
deltalake-aws = { version = "0.2.0", optional = true }
deltalake-azure = { version = "0.2.0", optional = true }
#deltalake-core = { version = "0.19.1", features = ["json", "datafusion"]}
deltalake-core = { git = "https://github.com/rtyler/delta-rs", branch = "bug/iam-assume-role", features = ["json", "datafusion" ]}
#deltalake-aws = { version = "0.2.0", optional = true }
deltalake-aws = { git = "https://github.com/rtyler/delta-rs", branch = "bug/iam-assume-role", optional = true }
deltalake-azure = { git = "https://github.com/rtyler/delta-rs", branch = "bug/iam-assume-role", optional = true }

# s3 feature enabled, helps for locking interactions with DLQ
dynamodb_lock = { version = "0.6.0", optional = true }
Expand Down
Loading