diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-09-13 20:37:13 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-09-13 20:37:13 +0800 |
| commit | 8ff1f520e94cc258483db063f8bfd43152ccdb5d (patch) | |
| tree | 9baa92d7ffcc924535514b06a57e365f1bdc7b42 /crates/utils | |
| parent | e6ed8679319485d3c6e38e3f017a3db365d375c8 (diff) | |
Add `tco_connection` modules
Diffstat (limited to 'crates/utils')
| -rw-r--r-- | crates/utils/tcp_connection/Cargo.toml | 7 | ||||
| -rw-r--r-- | crates/utils/tcp_connection/src/lib.rs | 2 |
2 files changed, 9 insertions, 0 deletions
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 |
