basic ip echo server

This commit is contained in:
juancwu 2026-01-17 03:11:05 +00:00
commit 0292e292d2
7 changed files with 842 additions and 0 deletions

8
Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "ip-echo"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.8"
tokio = { version = "1.49.0", features = ["full"] }