blob: 0457749f985309aa201a2d8258a8ba2a1a92594e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[package]
name = "env"
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"] }
|