yogesum / rust-book-2nd

Rust book second edition projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Rust book second edition projects

License:MIT License


Languages

Language:Rust 99.5%Language:HTML 0.5%