diff options
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | crates/env/Cargo.toml | 7 |
2 files changed, 9 insertions, 0 deletions
@@ -341,6 +341,8 @@ dependencies = [ "cfg_file", "serde", "string_proc", + "tcp_connection", + "tokio", "uuid", ] diff --git a/crates/env/Cargo.toml b/crates/env/Cargo.toml index a7d1ca5..0457749 100644 --- a/crates/env/Cargo.toml +++ b/crates/env/Cargo.toml @@ -4,8 +4,15 @@ edition = "2024" version.workspace = true [dependencies] +tcp_connection = { path = "../utils/tcp_connection" } cfg_file = { path = "../utils/cfg_file", features = ["default"] } string_proc = { path = "../utils/string_proc" } +# Identity uuid = { version = "1.18.1", features = ["v4", "serde"] } + +# Serialization serde = { version = "1.0.219", features = ["derive"] } + +# Async & Networking +tokio = { version = "1.46.1", features = ["full"] } |
