Skip to content

yogesum/rust-book-2nd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rust Programing Language Book - Projects

This repository contains 2 working projects built in process of learning rust with Rust Book - second edition.

  1. minigrep - Basic version of grep command chapter-12
cd minigrep

# case sensitive search
cargo run To poem.txt

# to search in case insensitive mode
CASE_INSENSITIVE=1 cargo run to poem.txt
  1. webserver - A multi-threaded HTTP Web server chapter-20
cd webserver

cargo run # open http://127.0.0.1:7878/ in browser

License

Licensed under MIT license