diff --git a/Cargo.lock b/Cargo.lock index aabd00a..c8ae033 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -660,6 +660,7 @@ name = "lychee" version = "0.1.0" dependencies = [ "github-rs", + "pico-args", "pulldown-cmark", "regex", "reqwest", @@ -876,6 +877,12 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" +[[package]] +name = "pico-args" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b1eee8b1f4966c8343d7ca0f5a8452cd35d5610a2e0efbe2a68cae44bef2046" + [[package]] name = "pin-project" version = "0.4.22" diff --git a/Cargo.toml b/Cargo.toml index cbdab35..8ed1ca5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,11 @@ name = "lychee" version = "0.1.0" authors = ["Matthias Endler "] edition = "2018" +description = "A boring link checker for my projects (and maybe yours)" +homepage = "https://github.com/hello-rust/lychee" +repository = "https://github.com/hello-rust/lychee" +documentation = "https://github.com/hello-rust/lychee/blob/master/README.md" +license = "Apache-2.0/MIT" [dependencies] github-rs = "0.7.0"