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

feat: migrate from rusoto to aws-sdk-rust #126

Merged
merged 21 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
80511bb
chore: add aws-sdk-rust for dependencies
ryota-sakamoto May 18, 2024
f71ebaf
refactor: use sdk in list_tables_api
ryota-sakamoto May 18, 2024
9636019
refactor: use sdk in list_tables_all_regions
ryota-sakamoto May 18, 2024
4570dc4
refactor: use sdk in delete_table
ryota-sakamoto May 18, 2024
23d391d
refactor: use sdk in list_backups_api
ryota-sakamoto May 18, 2024
88ab101
chore: remove rusoto_ec2 from dependencies
ryota-sakamoto May 18, 2024
b5737fa
refactor: use sdk in backup
ryota-sakamoto May 18, 2024
c2e3a8f
refactor: move key from app.rs to key.rs
ryota-sakamoto May 18, 2024
ba99b53
refactor: move utility functions from control.rs to util.rs
ryota-sakamoto May 18, 2024
543c935
feat: remove rusoto_dynamodb
ryota-sakamoto May 18, 2024
1d4ba74
chore: remove rusoto_signature
ryota-sakamoto May 20, 2024
1d4e3bf
test: fix test
ryota-sakamoto May 20, 2024
6b79381
chore: remove cargo audit ignore
ryota-sakamoto May 20, 2024
f486f57
chore: remove rusoto doc link
ryota-sakamoto May 20, 2024
8906d95
fix: fix setup_container on local
ryota-sakamoto May 20, 2024
caa20a2
chore: remove aws-types dependency
ryota-sakamoto May 20, 2024
704cb0c
fix: get default region from RegionProviderChain
ryota-sakamoto May 20, 2024
91ef6db
fix: overwrite endpoint_url when region is local
ryota-sakamoto May 20, 2024
4cfcd3f
fix: fix review points
ryota-sakamoto May 20, 2024
d10edfd
feat: use RetryConfig to define retry behavior
ryota-sakamoto May 20, 2024
74e68bd
fix: fix review points
ryota-sakamoto May 21, 2024
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
7 changes: 1 addition & 6 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,7 @@ env:
# We treat all findings as error to notify its status for maintainers.
# If we need to temporarily suppress the error, we use `--ignore` option with justification.
CARGO_AUDIT_BASE_FLAGS: --quiet -D warnings -D unmaintained -D unsound -D yanked

# RUSTSEC-2022-0071
# We are working to migrate from Rusoto to AWS SDK for Rust.
# To emphasize other issues and because of not affecting the customer immediately, we disable this error.
# See: https://github.com/awslabs/dynein/pull/126
CARGO_AUDIT_IGNORE_FLAGS: --ignore RUSTSEC-2022-0071
CARGO_AUDIT_IGNORE_FLAGS:

permissions: {}

Expand Down
Loading