summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--crates/utils/tcp_connection/Cargo.toml6
2 files changed, 7 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 95bbdfb..1bffdf5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -401,6 +401,8 @@ dependencies = [
name = "tcp_connection"
version = "0.1.0"
dependencies = [
+ "serde",
+ "serde_json",
"tokio",
]
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"