diff options
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 |
