blob: 6735d43c873846523d8e28eebfe3fd13131b48e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
[package]
name = "vcs_actions"
edition = "2024"
version.workspace = true
[dependencies]
# Utils
tcp_connection = { path = "../utils/tcp_connection" }
cfg_file = { path = "../utils/cfg_file", features = ["default"] }
string_proc = { path = "../utils/string_proc" }
# Core dependencies
action_system = { path = "../system_action" }
vcs_data = { path = "../vcs_data" }
# Error handling
thiserror = "1.0.69"
# Serialization
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
# Async & Networking
tokio = { version = "1.46.1", features = ["full"] }
# Logging
log = "0.4.28"
|