summaryrefslogtreecommitdiff
path: root/crates/utils
diff options
context:
space:
mode:
Diffstat (limited to 'crates/utils')
-rw-r--r--crates/utils/tcp_connection/Cargo.toml8
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"