From 62dd79cea8bfc0b6af95049d8a0187dd2380b09c Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 6 Nov 2025 22:10:06 +0800 Subject: update: Dependencies and project configuration - Update Cargo.lock with latest dependencies - Add new dependencies to Cargo.toml - Update vcs_data crate dependencies --- crates/vcs_data/Cargo.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'crates') diff --git a/crates/vcs_data/Cargo.toml b/crates/vcs_data/Cargo.toml index f28c91e..b06984f 100644 --- a/crates/vcs_data/Cargo.toml +++ b/crates/vcs_data/Cargo.toml @@ -6,12 +6,14 @@ version.workspace = true [dependencies] # Utils -tcp_connection = { path = "../utils/tcp_connection" } cfg_file = { path = "../utils/cfg_file", features = ["default"] } +data_struct = { path = "../utils/data_struct" } +tcp_connection = { path = "../utils/tcp_connection" } string_proc = { path = "../utils/string_proc" } # Core action_system = { path = "../system_action" } +vcs_docs = { path = "../vcs_docs" } # Identity uuid = { version = "1.18.1", features = ["v4", "serde"] } @@ -24,3 +26,9 @@ tokio = { version = "1.48.0", features = ["full"] } # Filesystem dirs = "6.0.0" + +# Time +chrono = "0.4.42" + +# Win API +winapi-util = "0.1.11" -- cgit