summaryrefslogtreecommitdiff
path: root/crates/vcs_data/vcs_data_test/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-10-06 04:11:34 +0800
committer魏曹先生 <1992414357@qq.com>2025-10-06 04:11:34 +0800
commit87c3ec3fdcbd2294c3b9258d28ff47959e6eff68 (patch)
treea601cb7e7d97917e4a79ae6db3698c8ecd31717c /crates/vcs_data/vcs_data_test/Cargo.toml
parentce4545a21d435d63827fb972406e749354ac687a (diff)
Move vcs crate to vcs_data for better separation of concerns
- Rename vcs crate to vcs_data to clearly define data layer - Maintain all existing data structures and functionality - Update dependencies to include action_system integration - Preserve test structure in vcs_data_test directory
Diffstat (limited to 'crates/vcs_data/vcs_data_test/Cargo.toml')
-rw-r--r--crates/vcs_data/vcs_data_test/Cargo.toml13
1 files changed, 13 insertions, 0 deletions
diff --git a/crates/vcs_data/vcs_data_test/Cargo.toml b/crates/vcs_data/vcs_data_test/Cargo.toml
new file mode 100644
index 0000000..9dcbd4a
--- /dev/null
+++ b/crates/vcs_data/vcs_data_test/Cargo.toml
@@ -0,0 +1,13 @@
+[package]
+name = "vcs_data_test"
+edition = "2024"
+version.workspace = true
+
+[dependencies]
+tcp_connection = { path = "../../utils/tcp_connection" }
+tcp_connection_test = { path = "../../utils/tcp_connection/tcp_connection_test" }
+cfg_file = { path = "../../utils/cfg_file", features = ["default"] }
+vcs_data = { path = "../../vcs_data" }
+
+# Async & Networking
+tokio = { version = "1.46.1", features = ["full"] }