1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-31 04:59:50 +02:00

Add content for axum (#7299)

* Update 104-axum.md

* Update src/data/roadmaps/rust/content/108-web-development/104-axum.md

---------

Co-authored-by: dsh <daniel.s.holdsworth@gmail.com>
This commit is contained in:
Hashir V
2024-10-02 19:47:22 +05:30
committed by GitHub
parent 0643e86514
commit 87ef708da3

View File

@@ -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.
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/)