rust-cookbook/README.md

37 lines
1.4 KiB
Markdown
Raw Normal View History

2017-02-21 22:41:35 +00:00
# Cookin' with Rust
A practical guide to the Rust crate ecosystem.
## Recipes
2017-02-25 20:56:50 +00:00
### [Byteorder](src/pages/byteorder.md) [![byteorder][byteorder-badge]][byteorder]
### [File IO](src/pages/fileio.md) [![file][file-badge]][file]
### [Command Line Parsing](src/pages/cliparsing.md) [![clap][clap-badge]][clap]
### [JSON](src/pages/json.md) [![json][json-badge]][json]
2017-02-25 21:17:57 +00:00
### [TOML](src/pages/toml.md) [![toml][toml-badge]][toml]
### [rand](src/pages/rand.md) [![rand][rand-badge]][rand]
2017-02-21 22:41:35 +00:00
2017-02-25 08:25:51 +00:00
## Contributing
If you'd like to make changes to the project, please see [this guide](CONTRIBUTING.md).
2017-02-21 22:41:35 +00:00
## License
2017-02-21 22:41:35 +00:00
MIT/Apache-2.0
<!-- Links -->
[byteorder-badge]: https://img.shields.io/crates/v/byteorder.svg?label=byteorder
2017-02-21 22:41:35 +00:00
[byteorder]: https://docs.rs/byteorder
[file-badge]: https://img.shields.io/crates/v/file.svg?label=file
2017-02-25 09:24:42 +00:00
[file]: https://doc.rust-lang.org/std/fs/struct.File.html
[clap-badge]: https://img.shields.io/crates/v/clap.svg?label=clap
2017-02-25 09:24:42 +00:00
[clap]: https://kbknapp.github.io/clap-rs/clap/struct.Arg.html
[json-badge]: https://img.shields.io/crates/v/json.svg?label=json
2017-02-25 09:24:42 +00:00
[json]: http://json.rs/doc/json
[toml-badge]: https://img.shields.io/crates/v/toml.svg?label=toml
2017-02-25 18:54:52 +00:00
[toml]: http://alexcrichton.com/toml-rs/toml/
2017-02-25 20:53:13 +00:00
[rand-badge]: https://img.shields.io/crates/v/rand.svg?label=rand
[rand]: https://doc.rust-lang.org/rand/rand/index.html
[error-docs]: https://doc.rust-lang.org/book/error-handling.html
[error-blog]: https://brson.github.io/2016/11/30/starting-with-error-chain