Skip to content

Commit e4b6d7b

Browse files
committed
feat:v2.29.0
1 parent 094715a commit e4b6d7b

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperlane"
3-
version = "2.28.0"
3+
version = "2.29.0"
44
edition = "2021"
55
authors = ["ltpp-universe <root@ltpp.vip>"]
66
license = "MIT"
@@ -17,9 +17,9 @@ exclude = [
1717

1818
[dependencies]
1919
color-output = "6.1.4"
20-
http-request = "8.23.0"
21-
http-type = "2.15.0"
22-
hyperlane-log = "0.12.0"
20+
http-request = "8.25.0"
21+
http-type = "2.20.0"
22+
hyperlane-log = "0.15.0"
2323
hyperlane-time = "0.0.1"
2424
lombok-macros = "1.5.0"
2525
std-macro-extensions = "0.17.6"

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ fn send_request() -> Vec<u8> {
7171
.buffer(4096)
7272
.max_redirect_times(8)
7373
.http1_1_only()
74-
.builder();
74+
.build();
7575
_request_builder
7676
.send()
77-
.and_then(|response| Ok(response.binary().body))
77+
.and_then(|response| Ok(response.binary().get_body()))
7878
.unwrap_or_default()
7979
}
8080

src/cfg.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ fn test_server_basic_usage() {
4949
.buffer(4096)
5050
.max_redirect_times(8)
5151
.http1_1_only()
52-
.builder();
52+
.build();
5353
_request_builder
5454
.send()
55-
.and_then(|response| Ok(response.binary().body))
55+
.and_then(|response| Ok(response.binary().get_body()))
5656
.unwrap_or_default()
5757
}
5858

0 commit comments

Comments
 (0)