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 1
1
[package ]
2
2
name = " lambda_http"
3
- version = " 0.11.3 "
3
+ version = " 0.11.4 "
4
4
authors = [
5
5
" David Calavera <dcalaver@amazon.com>" ,
6
6
" Harold Sun <sunhua@amazon.com>" ,
@@ -34,7 +34,7 @@ http = { workspace = true }
34
34
http-body = { workspace = true }
35
35
http-body-util = { workspace = true }
36
36
hyper = { workspace = true }
37
- lambda_runtime = { version = " 0.11.2 " , path = " ../lambda-runtime" }
37
+ lambda_runtime = { version = " 0.11.3 " , path = " ../lambda-runtime" }
38
38
mime = " 0.3"
39
39
percent-encoding = " 2.2"
40
40
pin-project-lite = { workspace = true }
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ pub use sender::Sender;
20
20
pub ( crate ) struct DecodedLength ( u64 ) ;
21
21
22
22
impl 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 ) ;
25
25
pub ( crate ) const ZERO : DecodedLength = DecodedLength ( 0 ) ;
26
26
27
27
pub ( crate ) fn sub_if ( & mut self , amt : u64 ) {
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " lambda_runtime"
3
- version = " 0.11.2 "
3
+ version = " 0.11.3 "
4
4
authors = [
5
5
" David Calavera <dcalaver@amazon.com>" ,
6
6
" Harold Sun <sunhua@amazon.com>" ,
@@ -26,10 +26,7 @@ http = { workspace = true }
26
26
http-body = { workspace = true }
27
27
http-body-util = { workspace = true }
28
28
http-serde = { workspace = true }
29
- hyper = { workspace = true , features = [
30
- " http1" ,
31
- " client" ,
32
- ] }
29
+ hyper = { workspace = true , features = [" http1" , " client" ] }
33
30
hyper-util = { workspace = true , features = [
34
31
" client" ,
35
32
" client-legacy" ,
You can’t perform that action at this time.
0 commit comments