Skip to content

Commit f1fa09b

Browse files
committed
feat: v2.2.7
1 parent cc692b5 commit f1fa09b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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.2.6"
3+
version = "2.2.7"
44
edition = "2024"
55
authors = ["root@ltpp.vip"]
66
license = "MIT"

src/request/config/struct.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
use crate::*;
22

33
#[derive(Debug, Clone, PartialEq, Eq)]
4-
pub struct Config {
5-
pub host: String,
6-
pub port: usize,
7-
pub timeout: u64,
8-
pub buffer_size: usize,
4+
pub(crate) struct Config {
5+
pub(crate) host: String,
6+
pub(crate) port: usize,
7+
pub(crate) timeout: u64,
8+
pub(crate) buffer_size: usize,
99
}

0 commit comments

Comments
 (0)