Commit graph

522 commits

Author SHA1 Message Date
Yogesh Choudhary
af25e615d2 fix rand crate example and broken links 2018-06-04 12:58:13 +02:00
Dominik Winecki
78a59fb0f7 Move rand doc links to docs.rs 2018-05-21 21:44:50 +02:00
Dominik Winecki
ad658f8e21 Fix broken rand links 2018-05-21 21:44:50 +02:00
Michal Budzynski
331171bfbb Hotfix for missing FontAwesome on mdBook 0.1.7
cc https://github.com/rust-lang-nursery/rust-cookbook/issues/416
2018-05-16 23:31:25 +02:00
Michal Budzynski
43a34ef1cb support search by updating to mdbook 0.1.7 2018-05-16 22:40:39 +02:00
Dominik Winecki
b83f6c323d Update ring badge link 2018-05-15 14:46:08 +02:00
Dominik Winecki
e62320ef6c Update doc link location for ring crate 2018-05-15 14:46:08 +02:00
Michal Budzynski
6fec9ecfc4 Bump version of logging crates and fix broken links in logging.md 2018-05-15 00:44:18 +02:00
Michal Budzynski
d7c86d0560 bumped crate versions
`csv`, `hyper`, `regex`, `rayon`, `image`
2018-05-15 00:44:18 +02:00
Dominik Winecki
f8c48a096f Fix broken links 2018-05-13 20:44:37 +02:00
Ty Coghlan
deb4ef6783 initial csv-transform (#348)
* typos

* initial csv-transform

changed url parsing into color parsing

* hid boilerplate and added some more documentation
2018-05-08 10:22:08 -07:00
math-foo
50b184cd90 Add example of MIME from string (#406)
* Add example of MIME from string

* Simplify example by removing error-chain
2018-05-02 16:48:34 -07:00
Ludwig PACIFICI
ecc4c2ea4b Added file names modified in the last 24 hours in CWD (#405)
* Update std badge version
* Remove duplicate ex-format-datetime

fixes #399
2018-05-02 16:47:55 -07:00
NiekGr
24602267ea Add example "Parse the MIME type of a HTTP response" (#407)
In this example is shown how the media type of a response, received with
reqwest, can be obtained from it's headers. The media type is then
matched with predefined constants from the mime crate.
2018-05-02 16:46:38 -07:00
Andy Gauge
885130c73f Update github pull request template after CC0 licensing change 2018-04-26 07:17:38 +02:00
Michał Budzyński
843e73ad21 Changed license to CC0 https://creativecommons.org/publicdomain/zero/1.0/ (#210) 2018-04-25 15:28:21 -07:00
Anatoli Babenia
c1f50576e5 Improve description of continous output processing (#380) 2018-04-25 15:23:36 -07:00
Ludwig PACIFICI
20cef5b8d4 Add "Handle errors correctly in main" recipe (#381) 2018-04-24 14:21:41 -07:00
Andrew Gauger
e5dfcd1b2d return recursively, hide error-chain, and remove unused error specification 2018-04-20 09:17:41 +02:00
João Bolila
2d3679b14e Adds example of handle a rate-limited API #93 2018-04-20 09:17:41 +02:00
Andrew Gauger
29dacc6267 Style guide update to include embedded example and sections 2018-04-19 08:29:26 +02:00
jrakow
c8ec1d7076 fix C++ linking example (#385) 2018-04-18 12:49:55 -07:00
Andrew Gauger
8c15ed7c7f
Merge pull request #387 from skierpage/patch-1
rephrase text pattern replacement example
2018-04-18 12:36:46 -07:00
skierpage
e28a69015f
rephrase text pattern replacement example
The example **Replace all occurrences of one text pattern with another pattern** mentions a "British English date pattern" when it's using ISO 8601 dates, see issue #386. Change the explanation and a variable name. Also use the same string in code that's in the explanation Untested, sorry.
2018-01-24 18:25:22 -08:00
Michal Budzynski
333c8a2bfa Bump dependencies and fix buildbreaks 2018-01-11 15:14:43 +01:00
Paul Houghton
8a604f51e4 Replaced mdbook build with mdbook server --open 2018-01-11 10:13:50 +01:00
Paul Houghton
7c3ad4c21e Simplified web launch 2018-01-11 10:13:50 +01:00
Paul Houghton
537ad3845d Removed Rust install link; added Rust general link; fixed per-browser instructions 2018-01-11 10:13:50 +01:00
Paul Houghton
9fefa98ddd Added local mdbook instructions to README.md 2018-01-11 10:13:50 +01:00
Anna Liao
5da134d5d1 create random passwords from a set of allowed characters 2017-12-12 09:31:09 +01:00
Anna Liao
0b3d6ff22a semver example: find the latest version satsifying given range 2017-12-03 13:27:25 +01:00
Ludwig PACIFICI
8543f72ae1 Add "Process child process output continuously" example
fixes #339
2017-12-01 13:00:32 +01:00
Ludwig PACIFICI
b081b640cb Update badge std version from "1.19.0" to "1.22.1" 2017-12-01 13:00:32 +01:00
Ludwig PACIFICI
ba94df655e Add "Avoid discarding errors during error conversions" example (#368)
fixes #215
2017-11-18 16:51:49 +01:00
Pawel Duzinkiewicz
e668fff733 Added "Converting a formatted date to a Unix timestamp and vice versa" recipe
Added "Converting a formatted date to a Unix timestamp and vice versa" recipe
2017-11-16 13:43:08 +01:00
Lenard Pratt
3b1a4f5f94 Adds "converting a local time to UTC time and vice versa" recipe 2017-11-15 14:59:00 +01:00
Jeffrey Crocker
eec1522d90 Add Datelike and Timelike example (#366)
Add Datelike and Timelike example
2017-11-14 00:12:30 +01:00
Henri Lunnikivi
2ab0ba6114 Add example for checked arithmetic of chrono 2017-11-04 17:12:15 +01:00
Michał Budzyński
7cd2b21881
Make the PR template a little less confusing 2017-11-03 12:35:43 +01:00
Henri Lunnikivi
f2ab6f8ff9 Add example for parsing into chrono::DateTime
- Add an example for parsing strings in different formats into chrono::DateTime
structs and chrono::Naive* structs
- Add links to chrono::*

See also: #324
2017-11-03 11:28:37 +01:00
Michal Budzynski
38d59c3e92 [Upkeep] updated deps fixed build-breaks and sorted links 2017-11-03 03:23:28 +01:00
Chris Schneider
5a77148d32 Add missing log4s badge at top of Logging.md 2017-11-02 18:02:36 +01:00
Chris Schneider
3ea6f1fdbc Add a missing log4rs badge to intro
The "Log messages to a custom location" item on the intro page had only
the `log` badge, but was missing the `log4rs` badge. The `log4rs` was
already present on the specific recipe.
2017-11-02 10:03:26 +01:00
Ludwig PACIFICI
0ecf0bf233 Add "Redirect both stdout and stderr of child process to the same file" example
fixes #345
2017-10-31 11:29:59 +01:00
Chris Stadler
705475c457 Add rayon example with any and all
Add rayon example with any and all
2017-10-30 17:10:53 +01:00
Michał Budzyński
828d2ca1cc
Update PULL_REQUEST_TEMPLATE.md 2017-10-30 13:05:53 +01:00
Michał Budzyński
74a240c9b4
Create PULL_REQUEST_TEMPLATE.md 2017-10-30 12:57:45 +01:00
Ty Coghlan
d233cab25d Corrected typos
Corrected typos
2017-10-28 10:37:27 +02:00
Henri Lunnikivi
00af9d15c0 Add example for formatting chrono::DateTime
Add example for formatting chrono::DateTime
2017-10-27 17:16:48 +02:00
Jeff Hajewski
477d82f4b4 Adds parallel map-reduce recipe
See #329

* Adds example in `concurrency.md`
* Adds links to `intro.md`
2017-10-27 08:03:49 +02:00