This project demonstrates a web application using Rust for both frontend (via WebAssembly) and backend, with assembly language integration for performance-critical tasks.
frontend/
: Rust frontend using Yew framework.backend/
: Rust backend using Actix-Web framework.assembly/
: Assembly language files for specific tasks (e.g., SHA3-512 hashing).
- Clone the repository.
- Navigate to
frontend/
andbackend/
directories separately. - Run
cargo build
andcargo run
in each directory to build and start the frontend and backend servers, respectively.
- Access the web application frontend via
http://localhost:8080
(default Actix-Web port). - Explore how Rust and assembly integrate for performance optimizations in backend tasks.
- Adjust dependencies and implementations based on specific project requirements.
- Assembly (
sha3.asm
) integration assumes low-level optimizations or specific tasks where assembly is beneficial.