summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/system_action/Cargo.toml3
-rw-r--r--crates/vcs_actions/Cargo.toml13
-rw-r--r--crates/vcs_actions/src/lib.rs1
3 files changed, 17 insertions, 0 deletions
diff --git a/crates/system_action/Cargo.toml b/crates/system_action/Cargo.toml
index ee4f774..120cb34 100644
--- a/crates/system_action/Cargo.toml
+++ b/crates/system_action/Cargo.toml
@@ -9,3 +9,6 @@ action_system_macros = { path = "action_macros" }
# Serialization
serde = { version = "1.0.219", features = ["derive"] }
+
+# Async & Networking
+tokio = { version = "1.46.1", features = ["full"] }
diff --git a/crates/vcs_actions/Cargo.toml b/crates/vcs_actions/Cargo.toml
index e5a07f6..6735d43 100644
--- a/crates/vcs_actions/Cargo.toml
+++ b/crates/vcs_actions/Cargo.toml
@@ -13,3 +13,16 @@ 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"
diff --git a/crates/vcs_actions/src/lib.rs b/crates/vcs_actions/src/lib.rs
index 92de35f..2f7cbe4 100644
--- a/crates/vcs_actions/src/lib.rs
+++ b/crates/vcs_actions/src/lib.rs
@@ -1,2 +1,3 @@
pub mod actions;
+pub mod connection;
pub mod registry;