diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-09-21 18:09:52 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-09-21 18:09:52 +0800 |
| commit | f978525bfc600d609f54b23e161c64c2a1eeffa2 (patch) | |
| tree | 603a6b67e3d49e2d0d36aeeeb02ec6408d25ae5d /crates/utils | |
| parent | a1a4c428827fa6d94eb809793076f497d7e2933d (diff) | |
Add some dependencies 1. thiserror 2. Upgrade base64 3. pem 4. crc
Diffstat (limited to 'crates/utils')
| -rw-r--r-- | crates/utils/tcp_connection/Cargo.toml | 8 |
1 files changed, 7 insertions, 1 deletions
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" |
