https://github.com/nsevent/rust_playground
https://github.com/nsevent/rust_playground
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nsevent/rust_playground
- Owner: NSEvent
- Created: 2020-11-22T18:37:32.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-22T18:42:04.000Z (over 5 years ago)
- Last Synced: 2023-09-29T12:57:06.985Z (over 2 years ago)
- Language: Rust
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rust_playground
# Setup rust environment in current directory
cargo init
# Build
cargo build
# Build and run
cargo run
# Build optimized
cargo build --release
# Build and run optimized
cargo run --release