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

Initial Pass at an IO layer for the Rust SDK #107

Closed
wants to merge 61 commits into from
Closed
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
4e1db70
Move AWS specific generation into its own folder
rcoh Jan 5, 2021
7d25fba
Initial Pass at an IO layer for the Rust SDK
rcoh Jan 5, 2021
edbcba9
Missing files
rcoh Jan 12, 2021
7f0020d
Cleanup Rust code
rcoh Jan 12, 2021
47d0646
Merge branch 'main' into cred-providers
rcoh Jan 12, 2021
832886a
Refactor operation to split input and reponse handler
rcoh Jan 14, 2021
5304515
Improve parse response traits
rcoh Jan 14, 2021
c5856ec
creds experimentation
rcoh Jan 15, 2021
3c69e44
Merge branch 'main' of github.com:awslabs/smithy-rs into cred-providers
rcoh Jan 15, 2021
bb50baf
wip
rcoh Jan 15, 2021
39d8e1a
Migrate request to use extensions instead of specific fields
rcoh Jan 15, 2021
a0fedb9
Working Dynamo IT again!
rcoh Jan 17, 2021
39e61d7
more clippy cleanup
rcoh Jan 17, 2021
2a4c2e4
Merge branch 'main' of github.com:awslabs/smithy-rs into cred-providers
rcoh Jan 17, 2021
ba0adbc
Update IT
rcoh Jan 17, 2021
82cf564
Fixup imports
rcoh Jan 17, 2021
bded4d5
Include the Dynamo IT in tests
rcoh Jan 17, 2021
1523fa5
Generate examples in build artifact
rcoh Jan 19, 2021
c794581
Add DynamoDB Readme
rcoh Jan 19, 2021
ee6bf85
Fix signing
rcoh Jan 20, 2021
b2445f2
Add tracing middleware
rcoh Jan 20, 2021
0b099d9
raise logging level
rcoh Jan 20, 2021
f1f25fd
environment variable provider
rcoh Jan 20, 2021
2e58049
update comment
rcoh Jan 20, 2021
42c2061
go back to defaulting to DDB local
rcoh Jan 20, 2021
56ea4b1
Make requests clonable
rcoh Jan 20, 2021
f2429f0
Use fn once, remove unecessary mut
rcoh Jan 20, 2021
eaad212
Update middleware to operate on owned requests
rcoh Jan 20, 2021
d13a6ed
Add retry policy
rcoh Jan 20, 2021
1fb4cb3
Add region provider from environment
rcoh Jan 21, 2021
07b052b
Lots more improvements
rcoh Jan 22, 2021
83a0e87
continued iteration on the service
rcoh Jan 22, 2021
1f5e85b
retries!
rcoh Jan 22, 2021
a0f7f6c
Working retry support!
rcoh Jan 22, 2021
4d52a52
More cleanups
rcoh Jan 22, 2021
a0081cf
Merge branch 'main' of github.com:awslabs/smithy-rs into cred-providers
rcoh Jan 25, 2021
9decb96
aws-hyper building again
rcoh Jan 25, 2021
2c6d2c6
Tests passing again
rcoh Jan 25, 2021
cdb0143
get all tests passing again
rcoh Jan 25, 2021
694c16f
Fix tests
rcoh Jan 25, 2021
13699e3
Update lock, fix sigv4 usage
rcoh Jan 25, 2021
28015dc
add ready_and
rcoh Jan 26, 2021
f42f06c
wip
rcoh Jan 27, 2021
382cb86
Split call from call_rwa
rcoh Jan 27, 2021
b3ee27b
Merge branch 'main' of github.com:awslabs/smithy-rs into cred-providers
rcoh Jan 28, 2021
6925cd4
Split out sig auth crate
rcoh Jan 28, 2021
9f0689d
Add missing aws-sig-auth files
rcoh Jan 28, 2021
4adcaa7
Demo integration with the crucible ITs
rcoh Feb 2, 2021
1a05bc1
Merge branch 'main' of github.com:awslabs/smithy-rs into cred-providers
rcoh Feb 8, 2021
c07720f
Cleanup code in AWS hyper
rcoh Feb 8, 2021
de2be35
More cleanups
rcoh Feb 8, 2021
c1d466f
Merge branch 'main' of github.com:awslabs/smithy-rs into cred-providers
rcoh Feb 10, 2021
20e5466
Get working KMS client
rcoh Feb 10, 2021
8fddd4b
Add KMS example
rcoh Feb 10, 2021
0ecae9d
Merge branch 'main' of github.com:awslabs/smithy-rs into cred-providers
rcoh Feb 11, 2021
bbd5bb1
get the dynamo test compiling again
rcoh Feb 12, 2021
bc9b73d
Merge branch 'main' of github.com:awslabs/smithy-rs into cred-providers
rcoh Feb 12, 2021
712afbf
Get everything working with new endpoints
rcoh Feb 12, 2021
8737b8e
Cleanup unused imports
rcoh Feb 12, 2021
02529e8
Merge branch 'main' of github.com:awslabs/smithy-rs into cred-providers
rcoh Feb 13, 2021
c6c45a6
working again
rcoh Feb 13, 2021
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: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ jobs:
with:
java-version: ${{ env.java_version }}
- name: Generate the SDK
run: ./gradlew :aws-sdk:assemble
run: ./gradlew :aws:sdk:assemble
# docs are not included in the artifact; this step validates that they can be generated
- name: Generate docs
run: ./gradlew :aws-sdk:cargoDocs
run: ./gradlew :aws:sdk:cargoDocs
- name: Get current date
id: date
run: echo "name=${GITHUB_REF##*/}-$(date +'%Y-%m-%d')" >> $GITHUB_ENV
Expand All @@ -157,5 +157,5 @@ jobs:
with:
name: aws-sdk-${{ env.name }}-${{ github.sha }}
path: |
aws-sdk/build/aws-sdk/
!aws-sdk/build/aws-sdk/target
aws/sdk/build/aws-sdk/
!aws/sdk/build/aws-sdk/target

This file was deleted.

This file was deleted.

2 changes: 2 additions & 0 deletions aws/rust-runtime/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Cargo.lock
target/
2 changes: 2 additions & 0 deletions aws/rust-runtime/auth/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
target/
Cargo.lock
15 changes: 15 additions & 0 deletions aws/rust-runtime/auth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "auth"
version = "0.1.0"
authors = ["Russell Cohen <rcoh@amazon.com>"]
edition = "2018"
description = "Authentication related functionality for the AWS Rust SDK. All interfaces considered unstable."

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
http = "0.2.2"
aws-sigv4 = { git = "https://github.com/rcoh/sigv4" }

[dev-dependencies]
tokio = { version = "1", features = ["full"]}
Loading