Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 807 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 807 Bytes

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