Skip to content

Personal list of links to blog posts, articles, videos and notes for learning Rust

Notifications You must be signed in to change notification settings

Listwon/rust-notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

Rust notes

Personal list of links to blog posts, articles, videos and notes for learning Rust

Getting started

IDEs

Other materials

Notes

Scripts for optimized single file builds

brust.cmd (add to system PATH)

rustc -C opt-level=3 -C lto -C target-cpu=native %1

brust (place in /usr/local/bin/)

#!/bin/bash
rustc -C opt-level=3 -C lto -C target-cpu=native $1

Settings for optimized cargo builds

.cargo/config (place in project root)

[build]
rustflags = ["-C", "target-cpu=native", "-C", "opt-level=3"]

[term]
#verbose = true

cargo.toml

[profile.release]
lto = true
panic = 'abort'

About

Personal list of links to blog posts, articles, videos and notes for learning Rust

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published