File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed
lambda-runtime-api-client/src/body Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " lambda_http"
3- version = " 0.11.3 "
3+ version = " 0.11.4 "
44authors = [
55 " David Calavera <dcalaver@amazon.com>" ,
66 " Harold Sun <sunhua@amazon.com>" ,
@@ -34,7 +34,7 @@ http = { workspace = true }
3434http-body = { workspace = true }
3535http-body-util = { workspace = true }
3636hyper = { workspace = true }
37- lambda_runtime = { version = " 0.11.2 " , path = " ../lambda-runtime" }
37+ lambda_runtime = { version = " 0.11.3 " , path = " ../lambda-runtime" }
3838mime = " 0.3"
3939percent-encoding = " 2.2"
4040pin-project-lite = { workspace = true }
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ pub use sender::Sender;
2020pub ( crate ) struct DecodedLength ( u64 ) ;
2121
2222impl DecodedLength {
23- pub ( crate ) const CLOSE_DELIMITED : DecodedLength = DecodedLength ( :: std :: u64:: MAX ) ;
24- pub ( crate ) const CHUNKED : DecodedLength = DecodedLength ( :: std :: u64:: MAX - 1 ) ;
23+ pub ( crate ) const CLOSE_DELIMITED : DecodedLength = DecodedLength ( u64:: MAX ) ;
24+ pub ( crate ) const CHUNKED : DecodedLength = DecodedLength ( u64:: MAX - 1 ) ;
2525 pub ( crate ) const ZERO : DecodedLength = DecodedLength ( 0 ) ;
2626
2727 pub ( crate ) fn sub_if ( & mut self , amt : u64 ) {
Original file line number Diff line number Diff line change 11[package ]
22name = " lambda_runtime"
3- version = " 0.11.2 "
3+ version = " 0.11.3 "
44authors = [
55 " David Calavera <dcalaver@amazon.com>" ,
66 " Harold Sun <sunhua@amazon.com>" ,
@@ -26,10 +26,7 @@ http = { workspace = true }
2626http-body = { workspace = true }
2727http-body-util = { workspace = true }
2828http-serde = { workspace = true }
29- hyper = { workspace = true , features = [
30- " http1" ,
31- " client" ,
32- ] }
29+ hyper = { workspace = true , features = [" http1" , " client" ] }
3330hyper-util = { workspace = true , features = [
3431 " client" ,
3532 " client-legacy" ,
You can’t perform that action at this time.
0 commit comments