diff --git a/src/data/roadmaps/rust/content/108-web-development/104-axum.md b/src/data/roadmaps/rust/content/108-web-development/104-axum.md index a36102083..7f9cee400 100644 --- a/src/data/roadmaps/rust/content/108-web-development/104-axum.md +++ b/src/data/roadmaps/rust/content/108-web-development/104-axum.md @@ -1,3 +1,7 @@ # Axum -Axum is a web application framework for Rust. Visit [the documentation](https://docs.rs/axum/latest/axum/) to learn more. \ No newline at end of file +Axum is a web framework for building fast and efficient web services in Rust. It is designed to provide a robust and ergonomic way to create HTTP-based services by leveraging Rust's safety features and performance capabilities. Axum is built on top of the hyper library, which is a fast HTTP implementation, and integrates seamlessly with the Tokio runtime for asynchronous programming. Axum is well-suited for developers who want to build high-performance web applications in Rust, with a focus on safety, concurrency, and scalability. + +Visit the following resources to learn more: + +[@official@Axum Documentation](https://docs.rs/axum/latest/axum/)