rust-cookbook icon indicating copy to clipboard operation
rust-cookbook copied to clipboard

https://rust-lang-nursery.github.io/rust-cookbook

Results 130 rust-cookbook issues
Sort by recently updated
recently updated
newest added
trafficstars

The first section of chapter 16.1 is missing the crate error-chain: ![image](https://user-images.githubusercontent.com/5913008/115808463-883de600-a3b8-11eb-90e6-bcad6cc400bf.png)

fixes #644 love the PR template btw -------------------------- - [x] the tests are passing locally with `cargo test` - [x] cookbook renders correctly in `mdbook serve -o` - [x] commits...

`NO_PARAMS` has been deprecated. For homogeneous parameters, `[value1, value2, ...]` can be used directly. For heterogeneous parameters, `params![value1, value2, ...]` is preferred. -------------------------- ### Things to check before submitting a...

Down side of a pile of pull requests is that it might emit _stop sending PRs_. Up side of a pile of pull requests is that it might emit _fresh...

The badge of the ansi_term package is pointing incorrectly to the base64 crate, this is causing that the ansi_term package shows a non existent version ![image](https://user-images.githubusercontent.com/5913008/111088953-02e52d00-8500-11eb-8061-2d7e7cfaba40.png)

https://github.com/rust-lang-nursery/rust-cookbook/blob/master/src/web/clients/download/basic.md doesnt work if trying to download a binary file (such as an image). Might want to either point this out or modify the example to handle all data. Doesn't...

I've made a few changed to the original recipe: - made the usage of `error_chain` visible to account for #563 - switch to the synchronous reqwest client to simplify the...

There are already some examples in the cookbook for relational databases (sqlite and postgres), would it be useful to have a nosql example such as MongoDB? I already have an...