blob: 98ab6c9c27af68ebdaf6a868dbb6fb480f4ff26c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[package]
name = "vcs"
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" }
vcs_service = { path = "../service" }
# 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"] }
# Filesystem
dirs = "6.0.0"
|