Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 449 Bytes

File metadata and controls

14 lines (11 loc) · 449 Bytes

Let's get Rusty!

Repo for a Rust tech talk

Getting Started

  • Install rustup for your operating system - this will also install cargo, rust's package manager
  • cargo run at the root will run whatever function is in main.rs

Troubleshooting

If you're having issues after the Cargo.toml file has been updated, delete your lock file before re-installing all dependencies:

$ rm -r Cargo.lock 
$ cargo build