File tree Expand file tree Collapse file tree
rust-runtime/aws-smithy-checksums
tools/ci-cdk/canary-runner/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[package ]
22name = " aws-smithy-checksums"
3- version = " 0.63.13 "
3+ version = " 0.63.14 "
44authors = [
55 " AWS Rust SDK Team <aws-sdk-rust@amazon.com>" ,
66 " Zelda Hessler <zhessler@amazon.com>" ,
@@ -18,7 +18,7 @@ aws-smithy-http = { path = "../aws-smithy-http" }
1818aws-smithy-types = { path = " ../aws-smithy-types" }
1919bytes = " 1.10.0"
2020# FIXME(https://github.com/smithy-lang/smithy-rs/issues/3981): Keep pinned until we have more comprehensive testing in place
21- crc-fast = " ~1.9 .0"
21+ crc-fast = " =1.4 .0"
2222hex = " 0.4.3"
2323http = " 0.2.9"
2424http-body = " 0.4.5"
Original file line number Diff line number Diff line change @@ -219,8 +219,7 @@ impl std::str::FromStr for LambdaArchitecture {
219219 "x86_64" | "x86-64" | "amd64" => Ok ( LambdaArchitecture :: X86_64 ) ,
220220 "arm64" | "aarch64" => Ok ( LambdaArchitecture :: Arm64 ) ,
221221 _ => Err ( format ! (
222- "Unknown architecture: {}. Use 'x86_64' or 'arm64'" ,
223- s
222+ "Unknown architecture: {s}. Use 'x86_64' or 'arm64'"
224223 ) ) ,
225224 }
226225 }
@@ -411,7 +410,7 @@ pub async fn build_bundle(opt: BuildBundleArgs) -> Result<Option<PathBuf>> {
411410 . arg ( "--release" )
412411 . arg ( "--manifest-path" )
413412 . arg ( & manifest_path)
414- . arg ( format ! ( "--target={}" , target ) ) ;
413+ . arg ( format ! ( "--target={target}" ) ) ;
415414 handle_failure ( "cargo build" , & command. output ( ) ?) ?;
416415
417416 // Compile the wasm canary to a .wasm binary
You can’t perform that action at this time.
0 commit comments