about summary refs log tree commit diff
path: root/src/tools/linkchecker/Cargo.toml
AgeCommit message (Collapse)AuthorLines
2021-09-20Migrate to 2021Mark Rousskov-1/+1
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.
2020-10-15Deny broken intra-doc links in linkcheckerJoshua Nelson-0/+4
Since rustdoc isn't warning about these links, check for them manually.
2019-02-03Transition linkchecker to 2018 editionHirokazu Hata-0/+1
2016-11-08rustbuild: Tweak for vendored dependenciesAlex Crichton-3/+0
A few changes are included here: * The `winapi` and `url` dependencies were dropped. The source code for these projects is pretty weighty, and we're about to vendor them, so let's not commit to that intake just yet. If necessary we can vendor them later but for now it shouldn't be necessary. * The `--frozen` flag is now always passed to Cargo, obviating the need for tidy's `cargo_lock` check. * Tidy was updated to not check the vendor directory Closes #34687
2016-08-12Upgrade linkchecker to url 1.2.0.Ahmed Charles-1/+1
2016-03-08rustbuild: Add a link checker for documentationAlex Crichton-0/+11
Add a script to get run which verifies that `href` links in documents are correct. We're always getting a steady stream of "fix a broken link" PRs and issue reports, and we should probably just nip them all in the bud.