This repository contains 2 working projects built in process of learning rust with Rust Book - second edition.
- minigrep - Basic version of
grep
commandchapter-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
- webserver - A multi-threaded HTTP Web server
chapter-20
cd webserver
cargo run # open http://127.0.0.1:7878/ in browser
Licensed under MIT license