rust-cookbook
rust-cookbook copied to clipboard
https://rust-lang-nursery.github.io/rust-cookbook
### Some ideas here are not accepted yet, please comment here and wait for separate "example" implementation issues before submitting a PR! Lets' discuss about new recipes to highlight databases...
| | | | ------------- | ------------- | | Crates | std | | Section | 16.2 String Parsing | Given a simple custom type, implement debug and display directly....
The current design is basically the result of a single pass back when there were only a few examples, and clearly isn't scalable. It needs a complete rethink. Some requirements...
| | | | ------------- | ------------- | | Crates | flate | | Section | 3.2 Compressed Files | Please add examples for reading compressed files like gzip, bz2...
Issue to gather ideas for the threadpool crate edit: - [x] [Draw fractal dispatching work to a thread pool](https://brson.github.io/rust-cookbook/concurrency.html#ex-threadpool-fractal) - [x] [calculate SHA1 in all *.iso files in a folder](https://github.com/rust-lang-nursery/rust-cookbook/pull/274)...
Currently part of the https://rust-lang-nursery.github.io/rust-cookbook/build_tools.html#ex-cc-static-bundled example was made `ignore` due to it being both multifile and build.rs based example (unfortunately, skeptic does not support either of these cases). Otherwise we...
| | | | ------------- | ------------- | | Crates | cc | | Section | 8.3 Build Time Tooling | Use [cc](https://crates.io/crates/cc) crate to compile and link dynamically to...
| | | | ------------- | ------------- | | Crates | cc | | Section | 8.3 Build Time Tooling | Use [cc](https://crates.io/crates/cc) crate to compile and link statically to...
EDITED I'm not sure what the different options are regarding stdio, so here are some suggestions -------- Current list: - [x] [Run an external command and process stdout](https://rust-lang-nursery.github.io/rust-cookbook/basics.html#run-an-external-command-and-process-stdout) - [x]...
This crate is presently being [evaluated](https://internals.rust-lang.org/t/crate-evaluation-for-2017-07-11-gcc/5450) and I don't see a cookbook issue opened. This one is weird because its a build time crate. But it is pretty important, and...