Skip to content

Commit 3b4479d

Browse files
committed
feat: v0.2.3
1 parent d00c275 commit 3b4479d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "udp-request"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
edition = "2024"
55
authors = ["ltpp-universe <root@ltpp.vip>"]
66
license = "MIT"
@@ -16,7 +16,7 @@ exclude = [
1616
]
1717

1818
[dependencies]
19-
lombok-macros = "1.10.1"
19+
lombok-macros = "1.11.0"
2020

2121
[profile.dev]
2222
incremental = false

src/request/config/struct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::*;
22

3-
#[derive(Debug, Clone, PartialEq, Eq, Lombok)]
3+
#[derive(Debug, Clone, PartialEq, Eq, Data)]
44
pub struct Config {
55
pub host: String,
66
pub port: usize,

src/request/request/struct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::*;
22

3-
#[derive(Debug, Clone, Lombok)]
3+
#[derive(Debug, Clone, Data)]
44
pub struct UdpRequest {
55
pub(crate) config: ArcRwLock<Config>,
66
pub(crate) response: ArcRwLock<UdpResponseBinary>,

0 commit comments

Comments
 (0)