diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-09-17 12:43:05 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-09-17 12:43:05 +0800 |
| commit | 241cfe2f0b3fc90a404542d27a87afd550ea2e9b (patch) | |
| tree | f2e01a8be2799cfff991a4d4b4e3a1f12029de22 /crates/utils/tcp_connection/Cargo.toml | |
| parent | 5de10102055699c2b8a70de7e865312dd8adf5e4 (diff) | |
Add `serde` dependencies for `tcp_connection` crate
Diffstat (limited to 'crates/utils/tcp_connection/Cargo.toml')
| -rw-r--r-- | crates/utils/tcp_connection/Cargo.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/utils/tcp_connection/Cargo.toml b/crates/utils/tcp_connection/Cargo.toml index 5a4f8ca..3812e1d 100644 --- a/crates/utils/tcp_connection/Cargo.toml +++ b/crates/utils/tcp_connection/Cargo.toml @@ -4,4 +4,8 @@ edition = "2024" version.workspace = true [dependencies] -tokio = { version = "1.46.1", features = ["full"] }
\ No newline at end of file +tokio = { version = "1.46.1", features = ["full"] } + +# Serialization +serde = { version = "1.0.219", features = ["derive"] } +serde_json = "1.0.140" |
