rust-cookbook
rust-cookbook copied to clipboard
https://rust-lang-nursery.github.io/rust-cookbook
There seems to be interest in [deprecating glob](https://github.com/rust-lang-nursery/glob/issues/59#issuecomment-297238603) (or repurposing it) in [favor of the functionality in globset / globwalk](https://github.com/rust-lang-nursery/ecosystem-wg/issues/17). Should the examples possibly be using one of these other...
Demonstrate a very simple way to implement code to use simd in https://rust-lang-nursery.github.io/rust-cookbook/hardware/processor.html Demonstrate especially the macros and function about processor feature detection and fallback and a simple use of...
Apparently, changes have been made to hyper 0.12 that breaks the `header!` implementation. Those changes should be reviewed and implemented into the recipes. Documentation is being moved to doc.servo.org until...
As the cookbook grows beyond the Libz Blitz, we'll need to put more thought into how we select crates and examples. Let's try to lay out a foundational policy that...
The [Perl cookbook](http://shop.oreilly.com/product/9780596003135.do) or [Python cookbook](http://shop.oreilly.com/product/0636920027072.do) could be a good source of inspiration. - [x] [Declare lazily evaluated constant](https://github.com/brson/rust-cookbook/issues/99) (lazy_static) - [x] [Maintain global mutable state](https://github.com/brson/rust-cookbook/issues/100) (lazy_static) - [x] [Unzip...
The organization of the book is just barely enough to be workable right now, but I hope we can do a lot more. Today there is a single index, organized...
https://internals.rust-lang.org/t/crate-evaluation-for-2017-08-15-mio/5709/7 > I think it is in scope for the cookbook to help users decide what level of the async stack they want to operate at. For example I can...
We already have a budding [build tools chapter](https://rust-lang-nursery.github.io/rust-cookbook/build_tools.html) mostly established to showcase build time crates like [cc](https://crates.io/crates/cc). My feeling is that we could go further with this formula and expand...
Some recipes can be run and will exit gracefully. However, when some outputs are printed on `stderr`, they will not be display. One example found with #325. It [shows on...
