rust/src/tools/linkchecker/Cargo.toml
Alex Crichton defd1b3392 rustbuild: Add a link checker for documentation
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.
2016-03-08 13:44:14 -08:00

11 lines
176 B
TOML

[package]
name = "linkchecker"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
[dependencies]
url = "0.5"
[[bin]]
name = "linkchecker"
path = "main.rs"