https://github.com/kernel-loophole/rust-rpc
https://github.com/kernel-loophole/rust-rpc
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/kernel-loophole/rust-rpc
- Owner: kernel-loophole
- Created: 2024-01-03T06:53:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-03T09:39:55.000Z (over 2 years ago)
- Last Synced: 2025-01-24T10:46:47.051Z (over 1 year ago)
- Language: Rust
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust Web Application with Rocket
This is a simple Rust web application that demonstrates form handling using the Rocket web framework.
## Project Structure
- `main.rs`: Main file containing the Rust code for the web application.
- `templates/`: Directory for HTML templates used by the application.
- `static/`: Directory for serving static files such as CSS or JavaScript.
## Dependencies
- [Rocket](https://rocket.rs/): A web framework for Rust.
- [rocket_dyn_templates](https://crates.io/crates/rocket_dyn_templates): Enables dynamic template rendering in Rocket applications.
## How to Run
1. Make sure you have Rust installed on your system.
2. Run the following command in the project directory:
```bash
cargo run