Skip to content

Commit 3575eda

Browse files
committed
feat: # 一个简单的 UDP 请求库,用于在 Rust 应用程序中发送和接收 UDP 数据包,设计用于处理网络通信。
1 parent d32e7b3 commit 3575eda

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tcp-request"
3-
version = "2.0.5"
3+
version = "2.0.6"
44
edition = "2021"
55
authors = ["ltpp-universe <root@ltpp.vip>"]
66
license = "MIT"

readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ cargo add tcp-request
3030

3131
```rs
3232
use tcp_request::*;
33+
3334
let mut request_builder = RequestBuilder::new()
3435
.host("127.0.0.1")
3536
.port(80)
@@ -47,6 +48,7 @@ request_builder
4748

4849
```rs
4950
use tcp_request::*;
51+
5052
let mut request_builder = RequestBuilder::new()
5153
.host("127.0.0.1")
5254
.port(80)

0 commit comments

Comments
 (0)