about summary refs log tree commit diff
path: root/src/tools/rustbook/Cargo.toml
AgeCommit message (Collapse)AuthorLines
2023-03-19Update mdbookEric Huss-1/+1
2023-01-09Update mdbookEric Huss-2/+2
2022-07-22Update mdbookEric Huss-1/+1
2022-07-09Bump to clap 3Michael Howell-1/+1
2022-04-15Update mdbookEric Huss-1/+1
2021-12-03Update mdbookEric Huss-1/+1
2021-09-20Migrate to 2021Mark Rousskov-1/+1
2021-08-02Update mdbook.Eric Huss-1/+1
2021-08-02Auto merge of #87535 - lf-:authors, r=Mark-Simulacrumbors-1/+0
rfc3052 followup: Remove authors field from Cargo manifests Since RFC 3052 soft deprecated the authors field, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information for contributors, we may as well remove it from crates in this repo.
2021-07-29rfc3052: Remove authors field from Cargo manifestsJade-1/+0
Since RFC 3052 soft deprecated the authors field anyway, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information, we should remove it from crates in this repo.
2021-07-26Update mdbook.Eric Huss-1/+1
2021-01-14Update mdbookEric Huss-1/+1
2021-01-04Update mdbookEric Huss-1/+1
2020-11-14Fix displaying errors when rustbook tests fail.Eric Huss-0/+1
2020-09-23Update mdBookCamelid-1/+1
0.4.2 -> 0.4.3
2020-06-26Update mdbook.Eric Huss-1/+1
2020-06-26Remove mdbook-linkcheck.Eric Huss-14/+0
2020-05-11rustbook: Bump mdbook dependencyIgor Matuszewski-1/+1
2020-02-03implement proper linkchecker hardeningmark-1/+2
2019-11-12Update mdbook.Eric Huss-2/+5
2019-10-28Use rustc-workspace-hack for rustbookSamuel Holland-0/+5
As rustbook now depends transitively on openssl, it needs access to the rustc-workspace-hack/all-static feature to pick up openssl-sys/vendored. This fixes the rust build with `all-static = true` on systems where openssl is not installed (e.g. when cross-compiling).
2019-08-09Check links on all platforms when running locallyMateusz Mikuła-3/+4
2019-07-17Update mdbook, cargo, booksEric Huss-6/+0
This updates the last of the books using mdbook 0.1, finally removing it from the build.
2019-07-06cfg: linkcheck only on x86-64 linuxMark Mansi-1/+3
2019-07-06Add linkcheck command to rustbook toolAndré Luis Leal Cardoso Junior-0/+2
2019-06-20Update mdbookEric Huss-3/+2
2019-05-09Switch to SPDX 2.1 license expressionDavid Tolnay-1/+1
According to the Cargo Reference: https://doc.rust-lang.org/cargo/reference/manifest.html > This is an SPDX 2.1 license expression for this package. Currently > crates.io will validate the license provided against a whitelist of > known license and exception identifiers from the SPDX license list > 2.4. Parentheses are not currently supported. > > Multiple licenses can be separated with a `/`, although that usage > is deprecated. Instead, use a license expression with AND and OR > operators to get more explicit semantics.
2019-01-30Update to newer version of mdbook(2)James Munns-1/+1
2019-01-30Remove stable featureJames Munns-2/+0
2019-01-30Only the compatibility items from the embedded book PRJames Munns-1/+11
PR: https://github.com/rust-lang/rust/pull/56291
2018-04-22Update MDBookMatt Ickstadt-1/+1
2018-04-05update mdbooksteveklabnik-1/+2
This includes search for all books, a long-requested feature!
2018-02-04update mdbook to 0.1.2steveklabnik-1/+1
and improve printing of errors
2018-01-15Check for deadlinks from the summary during book generationest31-1/+1
Previously, any deadlinks from a book's SUMMARY.md wouldn't cause any errors or warnings or similar but mdbook would simply create a page with blank content. This has kept bug #47394 hidden. It should have been detected back in the PR when those wrongly named files got added to the book. PR #47414 was one component of the solution. This change is a second line of defense for the unstable book and a first line of defense for any other book. We also update mdbook to the most recent version.
2017-10-02update mdbooksteveklabnik-1/+1
Fixes #44704
2017-09-11update mdbooksteveklabnik-1/+1
2017-07-11update crate dependenciessteveklabnik-2/+2
I wanted to update mdbook's version. This ended up updating a bunch of other stuff too.
2017-04-27Bump mdbook dep to pick up new 'create missing' toggle feature.Corey Farwell-1/+1
This will avoid obscure Travis CI error messages: * https://github.com/rust-lang/rust/pull/40290#issuecomment-294137045 Original mdbook issue: * https://github.com/azerupi/mdBook/issues/253 mdbook PR: * https://github.com/azerupi/mdBook/pull/254
2017-04-18update mdbooksteveklabnik-1/+1
2017-03-11Update mdbook to new versionsteveklabnik-1/+1
This brings back playpen integration for the books.
2017-02-28update mdbook versionSteve Klabnik-1/+1
This contains two important bugfixes
2017-02-20Update mdBook versionSteve Klabnik-1/+1
This brings in a needed bugfix.
2017-02-19Update mdbook versionSteve Klabnik-1/+1
This version of mdbook includes https://github.com/azerupi/mdBook/pull/207 , which is needed so that we can start doing linkchecker on the various books.
2017-02-13Re-implement rustbook in terms of mdbookSteve Klabnik-5/+8
mdbook has a lot of optional dependencies that we don't want, so instead of using it directly, we re-build rustbook to use mdbook as a library. For convenience' sake, we keep the same CLI interface as mdbook; the only difference is that it only accepts build and test subcommands, rather than the full range.
2016-12-29Fallout from updating bootstrap CargoAlex Crichton-0/+1
2016-03-08rustbuild: Move rustbook to a `src/tools` directoryAlex Crichton-0/+8
We've actually got quite a few tools that are compiled as part of our build, let's start housing them all in a `tools` directory.