Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pdsuwwz/rust-play

🎉 Hello Rust
https://github.com/pdsuwwz/rust-play

Last synced: 26 days ago
JSON representation

🎉 Hello Rust

Awesome Lists containing this project

README

        

# rust-play
🎉 Hello Rust

## Configuring root Cargo.toml

```bash
vi Cargo.toml
```

```toml
[workspace]
members = [
"packages/*",
]
```

## Creating the Second Package in the Workspace

```bash
cargo new packages/model --lib
cargo new packages/view --lib
cargo new packages/controller
```

## Run

```bash
cargo run
```