first commit, small server servme

This commit is contained in:
2025-01-16 18:24:43 +01:00
commit 79db275dc9
8 changed files with 570 additions and 0 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "servme"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.43.0", features = ["macros", "rt", "rt-multi-thread", "signal"] }
tokio-util = "0.7.13"
http = "1.2.0"
http-body-util = "0.1.2"
hyper = { version = "1.5.2", features = ["http1", "server"] }
hyper-util = { version = "0.1", features = ["http1", "server", "tokio"] }
log = { version = "0.4.22", features=["kv"]}
[lib]
name = "servme"
path = "src/lib.rs"