rust-web-server 17.15.0

Static file web server and HTTP toolkit written in Rust. Supports HTTP/3, HTTP/2, and HTTP/1.1. HTTP/3 and HTTP/2 require a TLS certificate; without one the server falls back to plain HTTP/1.1 automatically.
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Rust Web Server</title>
    <link rel="stylesheet" href="/static/style.css">
    <link rel="icon" href="/favicon.svg">
</head>
<body>
Hello world!
<ul>
    <li><a href="/static/content.png">image</a></li>
    <li><a href="/static/form">form</a></li>
    <li><a href="/static/file">file</a></li>
    <li><a href="/static">folder with index.html</a></li>
    <li><a href="/404">not found resource</a></li>
</ul>
</body>
</html>