1个不稳定版本
0.1.1 | 2023年9月12日 |
---|---|
0.1.0 |
|
#1026 in HTTP服务器
5KB
58 行
WebForge
一个用Rust编写的简单HTTP服务器
示例
#[tokio::main]
async fn main() {
println!("Starting HTTP server...");
let mut server: HTTPServer = HTTPServer::new(([127, 0, 0, 1], 8080).into());
server.insert("/".to_string(), || {
return (200, "index.html".to_string());
});
server.start().await;
}
同时确保将.html文件放在src/res目录中。
其他
快速提示:目前这个项目是WIP。
依赖项
~4–11MB
~102K SLoC