diff options
Diffstat (limited to 'src/tools/html-checker/Cargo.toml')
-rw-r--r-- | src/tools/html-checker/Cargo.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/html-checker/Cargo.toml b/src/tools/html-checker/Cargo.toml new file mode 100644 index 000000000..72d61d9bd --- /dev/null +++ b/src/tools/html-checker/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "html-checker" +version = "0.1.0" +edition = "2021" + +[[bin]] +name = "html-checker" +path = "main.rs" + +[dependencies] +walkdir = "2" +rayon = "1.5" |