generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 222
add: callback trait proposed in rfc#0012 #1329
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
5eba535
add: callback trait proposed in rfc#0012
7be6554
add: Sync bound to callbacks
365232d
add: license file to new crate
0dc939e
add: missing anchor to Cargo.toml
72fd264
rename: aws-smithy-checksum-callbacks to aws-smithy-checksums
c3a2406
remove: doc test for private fn
7501705
update: checksum callback struct names
901ae21
Merge branch 'main' into feature/flexible-checksums-foundation
43df512
Merge branch 'main' into feature/flexible-checksums-foundation
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,10 @@ | ||
| [package] | ||
| name = "aws-smithy-http" | ||
| version = "0.0.0-smithy-rs-head" | ||
| authors = ["AWS Rust SDK Team <[email protected]>", "Russell Cohen <[email protected]>"] | ||
| authors = [ | ||
| "AWS Rust SDK Team <[email protected]>", | ||
| "Russell Cohen <[email protected]>", | ||
| ] | ||
| description = "Smithy HTTP logic for smithy-rs." | ||
| edition = "2021" | ||
| license = "Apache-2.0" | ||
|
|
@@ -29,16 +32,30 @@ hyper = "0.14" | |
| # ByteStream internals | ||
| futures-core = "0.3.14" | ||
| tokio = { version = "1.6", optional = true } | ||
| tokio-util = { version = "0.6", optional = true} | ||
| tokio-util = { version = "0.6", optional = true } | ||
|
|
||
| # Checksum algos | ||
| crc32fast = "1.3" | ||
| crc32c = "0.6" | ||
| sha1 = "0.10" | ||
| sha2 = "0.10" | ||
|
|
||
| [dev-dependencies] | ||
| async-stream = "0.3" | ||
| futures-util = "0.3" | ||
| hyper = { version = "0.14", features = ["stream"] } | ||
| pretty_assertions = "1.2" | ||
| proptest = "1" | ||
| tokio = {version = "1.6", features = ["macros", "rt", "rt-multi-thread", "fs", "io-util"]} | ||
| tokio = { version = "1.6", features = [ | ||
| "macros", | ||
| "rt", | ||
| "rt-multi-thread", | ||
| "fs", | ||
| "io-util", | ||
| ] } | ||
| tokio-stream = "0.1.5" | ||
| tempfile = "3.2.0" | ||
| tracing-test = "0.2.1" | ||
|
|
||
| [package.metadata.docs.rs] | ||
| all-features = true | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.