

A high-performance web framework for Rust inspired by Next.js, featuring:
- ----
- ------
1.
-
Create a new project:
-
Add RustNext to your dependencies:
[] = "0.1" -
Create your first component in
src/main.rs:use *; -
Run your app:
📚 Examples
Project Dashboard
Demonstrates:
- CRUD operations for projects and tasks
- Form validation
- Multi-entity relationships
- POST-redirect-GET pattern
Product Catalog
Demonstrates:
- Product management
- Edit/delete workflows
- Search and filtering
- Pagination
Access both examples at: http://localhost:3000
📂 Project Structure
my_rustnext_app/
├── src/
│ ├── components/ # UI components
│ ├── pages/ # Page layouts
│ ├── api/ # API routes
│ └── main.rs # Application entry
├── static/ # Static assets
├── Cargo.toml
└── config.toml # Configuration
⚙️ Configuration
Edit config.toml:
[]
= "0.0.0.0"
= 3000
[]
= "postgres://user:pass@localhost/db" # Optional
[]
= true
= true
🤝 Contributing
We welcome contributions! Please:
- Fork the repository
- Create a feature branch
- Submit a PR
See our Contribution Guidelines for details.
📜 License
MIT © [sazalo]