Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pdsuwwz/rust-play
🎉 Hello Rust
https://github.com/pdsuwwz/rust-play
Last synced: 26 days ago
JSON representation
🎉 Hello Rust
- Host: GitHub
- URL: https://github.com/pdsuwwz/rust-play
- Owner: pdsuwwz
- License: mit
- Created: 2021-12-06T11:09:24.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-07T14:37:08.000Z (about 3 years ago)
- Last Synced: 2024-11-03T13:52:51.449Z (2 months ago)
- Language: Rust
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```