Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Rust Standard Library Cookbook

You're reading from   Rust Standard Library Cookbook Over 75 recipes to leverage the power of Rust

Arrow left icon
Product type Paperback
Published in Mar 2018
Publisher Packt
ISBN-13 9781788623926
Length 360 pages
Edition 1st Edition
Languages
Arrow right icon
Authors (2):
Arrow left icon
Jan Hohenheim Jan Hohenheim
Author Profile Icon Jan Hohenheim
Jan Hohenheim
Daniel Durante Daniel Durante
Author Profile Icon Daniel Durante
Daniel Durante
Arrow right icon
View More author details
Toc

Table of Contents (12) Chapters Close

Preface 1. Learning the Basics FREE CHAPTER 2. Working with Collections 3. Handling Files and the Filesystem 4. Serialization 5. Advanced Data Structures 6. Handling Errors 7. Parallelism and Rayon 8. Working with Futures 9. Networking 10. Using Experimental Nightly Features 11. Other Books You May Enjoy

How to do it...

  1. Create a Rust project to work on during this chapter with cargo new chapter_five.
  2. Navigate into the newly created chapter_five folder. For the rest of this chapter, we will assume that your command line is currently in this directory.
  3. Inside the src folder, create a new folder called bin.
  4. Delete the generated lib.rs file, as we are not creating a library.
  5. Open the Cargo.toml file that was generated earlier for you.

  6. Under [dependencies], add the following lines:
lazy_static = "1.0"
regex = "0.2"

If you want, you can go to the crates.io web pages for lazy_static (https://crates.io/crates/lazy_static) and regex (https://crates.io/crates/regex) to check for the newest version and use that one instead.

  1. In the src/bin folder, create a file called lazy_static.rs
  2. Add the following code and run it with cargo run --bin lazy_static:
1    #[macro_use] 
2 extern crate lazy_static;
3 extern crate regex;
4
5 use regex::Regex;
6 use...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime