summaryrefslogtreecommitdiff
path: root/crates/vcs/Cargo.toml
blob: ec1fb1452387c8fac2531d19370d6c03c351f2aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[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" }

# 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"