From 634fb641602f551677cd5217e14fd8de2424de48 Mon Sep 17 00:00:00 2001 From: Brad Anderson Date: Sat, 25 Feb 2017 03:24:42 -0600 Subject: [PATCH] Add links to work in progress pages --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 1bff480..7d02f92 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,9 @@ A practical guide to the Rust crate ecosystem. ## Recipes ### [Byteorder](pages/byteorder.md) [![byteorder][byteorder-badge]][byteorder] +### [File IO](pages/fileio.md) [![file][file-badge]][file] +### [Command Line Parsing](pages/cliparsing.md) [![clap][clap-badge]][clap] +### [JSON](pages/json.md) [![json][json-badge]][json] ## A note about error handling @@ -63,5 +66,11 @@ MIT/Apache-2.0 [byteorder-badge]: https://img.shields.io/crates/v/rustc-serialize.svg?label=byteorder [byteorder]: https://docs.rs/byteorder +[file-badge]: https://img.shields.io/crates/v/rustc-serialize.svg?label=file +[file]: https://doc.rust-lang.org/std/fs/struct.File.html +[clap-badge]: https://img.shields.io/crates/v/rustc-serialize.svg?label=clap +[clap]: https://kbknapp.github.io/clap-rs/clap/struct.Arg.html +[json-badge]: https://img.shields.io/crates/v/rustc-serialize.svg?label=json +[json]: http://json.rs/doc/json [error-docs]: https://doc.rust-lang.org/book/error-handling.html [error-blog]: https://brson.github.io/2016/11/30/starting-with-error-chain