memory-serve 2.1.0

Fast static file serving for axum web applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>RUST IS AWESOME</title>
    <script type="module" crossorigin src="/assets/index.js"></script>
    <link rel="stylesheet" href="/assets/index.css">
    <link rel="icon" type="image/jpeg" href="/assets/icon.jpg">
  </head>
  <body>
    <h1>About Page</h1>
  </body>
</html>