From 21db427077a78adb684722795cd8dabf66b56c7b Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Thu, 22 Jul 2021 15:41:28 +0200 Subject: [PATCH] Update examples readme --- examples/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/README.md b/examples/README.md index a588d62d..570b9cce 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,8 +1,10 @@ # Examples - [`hello_world`](../examples/hello_world.rs) - Very small getting started app. +- [`todos`](../examples/todos.rs) - Provides a RESTful web server managing some Todos. - [`key_value_store`](../examples/key_value_store.rs) - Slightly larger app with an in-memory key/value store. - [`form`](../examples/form.rs) - Receiving data from an HTML `
`. +- [`multipart_form`](../examples/multipart_form.rs) - How to parse `multipart/form-data` forms. - [`static_file_server`](../examples/static_file_server.rs) - Serving static files from a directory. Could for example be the baseline for a single page app. - [`templates`](../examples/templates.rs) - Rending HTML templates using [askama](https://crates.io/crates/askama). - [`testing`](../examples/testing.rs) - How to test axum apps.