diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..5453e6e --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "4chan-downloader" +description = "CLI to download all images/webms of a 4chan thread" +version = "0.1.0" +authors = ["Mariot Tsitoara <[email protected]>"] +edition = "2018" +license = "MIT" +readme = "README.md" +homepage = "https://github.com/mariot/4chan-downloader" +repository = "https://github.com/mariot/4chan-downloader" +keywords = ["cli", "4chan", "download", "downloader", "crawler"] +categories = ["command-line-utilities"] + +[dependencies] +clap = {version = "2.32", features = ["yaml"]} +regex = "1.1.2" +reqwest = "0.9.12" +tempdir = "0.3.7" |