Skip to content

Latest commit

 

History

History
48 lines (27 loc) · 2.03 KB

README.md

File metadata and controls

48 lines (27 loc) · 2.03 KB

Rust Frankfurt meetup

Repository for the rust frankfurt meetup group: https://www.meetup.com/Rust-Frankfurt/

setup

Rust setup, as recommended by the rust website: https://www.rust-lang.org/tools/install

docker based development

In case you don't want to install rust on your machine, or the setup does not work for you, you can try the docker based setup (requires your system to have docker installed).

Use make new to create a new rust app using cargo,

make run to build and run it,

make test to run cargo test.

Change the APP_NAME environment variable accordingly.

Tutorials

  • Rustlings - Small exercises to get you used to reading and writing Rust code!
  • Rust Playground - experiment online with a rust runtime
  • Rust by Example - a collection of runnable examples that illustrate various Rust concepts and standard libraries

Books

useful tools

rust 0x02