From 8ff1f520e94cc258483db063f8bfd43152ccdb5d Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 13 Sep 2025 20:37:13 +0800 Subject: Add `tco_connection` modules --- crates/utils/tcp_connection/Cargo.toml | 7 +++++++ crates/utils/tcp_connection/src/lib.rs | 2 ++ 2 files changed, 9 insertions(+) create mode 100644 crates/utils/tcp_connection/Cargo.toml create mode 100644 crates/utils/tcp_connection/src/lib.rs (limited to 'crates/utils/tcp_connection') diff --git a/crates/utils/tcp_connection/Cargo.toml b/crates/utils/tcp_connection/Cargo.toml new file mode 100644 index 0000000..5a4f8ca --- /dev/null +++ b/crates/utils/tcp_connection/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "tcp_connection" +edition = "2024" +version.workspace = true + +[dependencies] +tokio = { version = "1.46.1", features = ["full"] } \ No newline at end of file diff --git a/crates/utils/tcp_connection/src/lib.rs b/crates/utils/tcp_connection/src/lib.rs new file mode 100644 index 0000000..b1321c2 --- /dev/null +++ b/crates/utils/tcp_connection/src/lib.rs @@ -0,0 +1,2 @@ +#[allow(dead_code)] +pub mod target; \ No newline at end of file -- cgit