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

https://github.com/nsevent/rust_playground


https://github.com/nsevent/rust_playground

Last synced: about 2 months ago
JSON representation

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