Skip to content

Files

Latest commit

 

History

History

hello-world

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

# Web Application Structure

The First step in all axum application is to Add the dependencies

  • axum
  • tokio -full
  • serde -derive
  • serde_json
  • hyper

A Blue Print for Rust/Axum apps

  • Tokio: Async runtime and the foundation for builing network application in rust
  • Hyper: A Http Server & Client implementation
  • Database:
    • ORMs
      • SeaORM
      • Diesel
  • Serialization/Deserialization
  • Templating