about summary refs log tree commit diff
path: root/src/tools/linkchecker/Cargo.toml
AgeCommit message (Collapse)AuthorLines
2025-07-28bump linkchecker to edition 2024Pietro Albini-1/+1
2025-03-13bump html5ever to 0.29 with depsklensy-1/+1
2025-03-13bump html5ever to 0.28klensy-1/+1
see https://github.com/servo/html5ever/pull/548
2024-06-15bump few depsklensy-1/+1
2024-04-28Remove direct dependencies on lazy_static, once_cell and byteorderGeorge Bateman-1/+0
The functionality of all three crates is now available in the standard library.
2024-02-08Switch linkchecker to use html5ever for html parsing.Eric Huss-0/+1
The existing regex-based HTML parsing was just too primitive to correctly handle HTML content. Some books have legitimate `href="…"` text which should not be validated because it is part of the text, not actual HTML.
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.