From f978525bfc600d609f54b23e161c64c2a1eeffa2 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 21 Sep 2025 18:09:52 +0800 Subject: Add some dependencies 1. thiserror 2. Upgrade base64 3. pem 4. crc --- crates/utils/tcp_connection/Cargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'crates/utils') diff --git a/crates/utils/tcp_connection/Cargo.toml b/crates/utils/tcp_connection/Cargo.toml index 31b192a..e70baf0 100644 --- a/crates/utils/tcp_connection/Cargo.toml +++ b/crates/utils/tcp_connection/Cargo.toml @@ -10,11 +10,17 @@ tokio = { version = "1.46.1", features = ["full"] } serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0.140" +# Error handling +thiserror = "1.0.69" + # Uuid & Random uuid = "1.18.1" +# Crypto rsa = { version = "0.9", features = ["pkcs5", "sha2"] } ed25519-dalek = "3.0.0-pre.1" ring = "0.17.14" rand = "0.10.0-rc.0" -base64 = "0.21.7" +base64 = "0.22.1" +pem = "3.0.5" +crc = "3.3.0" -- cgit