diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-09-22 16:50:11 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-09-22 16:50:11 +0800 |
| commit | 0f66322495daf24503f566b250c723dd701e73eb (patch) | |
| tree | 71174fa44f19c34a72456bcc4a29f36372197c73 /crates/env | |
| parent | 8e03bb32b8bb11fe940f805e649d585246a3fb6a (diff) | |
Add tokio for `env` crate
Diffstat (limited to 'crates/env')
| -rw-r--r-- | crates/env/Cargo.toml | 7 |
1 files changed, 7 insertions, 0 deletions
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"] } |
