From c5fb22694e95f12c24b8d8af76999be7aea3fcec Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 12 Jan 2026 04:28:28 +0800 Subject: Reorganize crate structure and move documentation files --- data/tests/Cargo.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 data/tests/Cargo.toml (limited to 'data/tests/Cargo.toml') diff --git a/data/tests/Cargo.toml b/data/tests/Cargo.toml new file mode 100644 index 0000000..e7a0fcc --- /dev/null +++ b/data/tests/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 = "../../data" } + +# Async & Networking +tokio = { version = "1.48.0", features = ["full"] } -- cgit