-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CRT submodules to latest releases (#1019)
* Update CRT submodules to latest releases Signed-off-by: Burak Varlı <burakvar@amazon.co.uk> * Update CHANGELOG for CRT related crates Signed-off-by: Burak Varlı <burakvar@amazon.co.uk> --------- Signed-off-by: Burak Varlı <burakvar@amazon.co.uk>
- Loading branch information
Showing
9 changed files
with
16 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
Submodule aws-c-auth
updated
11 files
+1 −1 | .github/workflows/ci.yml | |
+1 −0 | .gitignore | |
+2 −2 | include/aws/auth/private/credentials_utils.h | |
+25 −0 | source/aws_signing.c | |
+17 −2 | source/credentials_provider_process.c | |
+9 −5 | source/credentials_provider_profile.c | |
+49 −7 | source/credentials_utils.c | |
+3 −0 | tests/CMakeLists.txt | |
+47 −46 | tests/credentials_provider_process_tests.c | |
+111 −76 | tests/credentials_provider_sts_tests.c | |
+58 −0 | tests/credentials_utils_tests.c |
Submodule aws-c-common
updated
4 files
+2 −2 | .github/workflows/proof_ci_resources/config.yaml | |
+1 −1 | cmake/AwsPrebuildDependency.cmake | |
+7 −1 | cmake/AwsSIMD.cmake | |
+212 −183 | verification/cbmc/proofs/Makefile.common |
Submodule aws-c-http
updated
6 files
Submodule aws-c-s3
updated
17 files
+16 −3 | .github/workflows/ci.yml | |
+5 −5 | include/aws/s3/private/s3_meta_request_impl.h | |
+11 −0 | include/aws/s3/private/s3_util.h | |
+2 −0 | include/aws/s3/s3.h | |
+50 −0 | include/aws/s3/s3_client.h | |
+2 −0 | source/s3.c | |
+20 −10 | source/s3_auto_ranged_get.c | |
+4 −10 | source/s3_auto_ranged_put.c | |
+5 −16 | source/s3_copy_object.c | |
+21 −10 | source/s3_default_meta_request.c | |
+159 −156 | source/s3_endpoint_resolver/aws_s3_endpoint_resolver_partition.c | |
+186 −158 | source/s3_meta_request.c | |
+56 −0 | source/s3_util.c | |
+7 −0 | tests/CMakeLists.txt | |
+256 −7 | tests/s3_data_plane_tests.c | |
+64 −16 | tests/s3_tester.c | |
+7 −0 | tests/s3_tester.h |
Submodule aws-checksums
updated
26 files
+105 −15 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+60 −49 | CMakeLists.txt | |
+29 −0 | bin/benchmark/CMakeLists.txt | |
+133 −0 | bin/benchmark/main.c | |
+4 −0 | builder.json | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+42 −3 | include/aws/checksums/crc.h | |
+51 −0 | include/aws/checksums/private/crc64_priv.h | |
+28 −11 | include/aws/checksums/private/crc_priv.h | |
+24 −0 | include/aws/checksums/private/crc_util.h | |
+4 −4 | source/arm/crc32c_arm.c | |
+208 −0 | source/arm/crc64_arm.c | |
+35 −9 | source/crc.c | |
+131 −0 | source/crc64.c | |
+579 −0 | source/crc64_sw.c | |
+0 −18 | source/generic/crc32c_null.c | |
+3 −14 | source/intel/asm/crc32c_sse42_asm.c | |
+245 −0 | source/intel/intrin/crc32c_sse42_avx512.c | |
+130 −0 | source/intel/intrin/crc64nvme_avx512.c | |
+147 −0 | source/intel/intrin/crc64nvme_clmul.c | |
+0 −77 | source/intel/visualc/visualc_crc32c_sse42.c | |
+3 −0 | tests/CMakeLists.txt | |
+144 −0 | tests/crc64_test.c | |
+129 −43 | tests/crc_test.c |
This file contains 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 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