From 87c3ec3fdcbd2294c3b9258d28ff47959e6eff68 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 6 Oct 2025 04:11:34 +0800 Subject: 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 --- crates/vcs_data/Cargo.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 crates/vcs_data/Cargo.toml (limited to 'crates/vcs_data/Cargo.toml') diff --git a/crates/vcs_data/Cargo.toml b/crates/vcs_data/Cargo.toml new file mode 100644 index 0000000..07f1a6a --- /dev/null +++ b/crates/vcs_data/Cargo.toml @@ -0,0 +1,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" -- cgit