rustverse

Crates.iorustverse
lib.rsrustverse
version0.1.2
created_at2025-10-31 07:00:38.079505+00
updated_at2025-10-31 07:19:08.959299+00
descriptionA simple Rust project generator β€” like cargo new, but friendlier.
homepage
repositoryhttps://github.com/Porrapat/rustverse
max_upload_size
id1909557
size14,170
Porrapat Petchdamrongskul (Porrapat)

documentation

README

πŸ¦€ Rustverse

Crates.io License Build Status

A friendly project generator for Rust β€” like cargo new, but more fun ✨
Quickly scaffold projects such as Axum 0.6.9, CLI tools, and more.


πŸš€ Installation

You can install Rustverse from crates.io:

cargo install rustverse

Then run it anywhere on your system:

rustverse my_app

🧩 Templates

Template Description
basic A simple β€œHello Rustverse!” CLI
axum Axum 0.6.9 web server template

πŸ’» Usage

🟒 Create a basic project

rustverse my_basic

Then run:

cd my_basic
cargo run

Output:

Hello Rustverse!

🟣 Create an Axum web project

rustverse my_axum --template axum

Then run:

cd my_axum
cargo run

Server output:

πŸš€ Server running at http://127.0.0.1:3000

Open your browser and visit http://localhost:3000


πŸ›  Development

Clone the repository and build from source:

git clone https://github.com/Porrapat/rustverse.git
cd rustverse
cargo build

Run locally:

cargo run -- my_test

πŸͺͺ License

Licensed under the MIT License.


Made with ❀️ by Porrapat Petchdamrongskul
β€œHello Rustverse β€” where your journey begins.”

Commit count: 0

cargo fmt