summaryrefslogtreecommitdiff
path: root/crates/vcs_data/Cargo.toml
blob: 07f1a6a84b11e66a35cb81ba40576e2085bd6722 (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_data"
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" }
action_system = { path = "../system_action" }

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