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

16
devbox.json Normal file
View file

@ -0,0 +1,16 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json",
"packages": [
"rustup@latest",
"posting@latest"
],
"env": {
"PROJECT_DIR": "$PWD"
},
"shell": {
"init_hook": [". conf/set-env.sh", "rustup default stable", "cargo fetch"],
"scripts": {
"test": ["echo \"Error: no test specified\" && exit 1"]
}
}
}