diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 23 |
1 files changed, 12 insertions, 11 deletions
@@ -1,14 +1,14 @@ [package] name = "chan-downloader" description = "CLI to download all images/webms of a 4chan thread" -version = "0.2.1" +version = "0.3.0" authors = ["Mariot Tsitoara <[email protected]>"] edition = "2018" license = "MIT" readme = "README.md" homepage = "https://github.com/mariot/chan-downloader" repository = "https://github.com/mariot/chan-downloader" -keywords = ["cli", "4chan", "download", "downloader", "crawler"] +keywords = ["cli", "4chan", "4plebs", "download", "downloader", "crawler"] categories = ["command-line-utilities"] [lib] @@ -20,12 +20,13 @@ name = "chan-downloader" path = "src/bin.rs" [dependencies] -clap = {version = "2.33.3", features = ["yaml"]} -env_logger = "0.8.2" -futures = "0.3" -indicatif = "0.15.0" -lazy_static = "1.4.0" -log = "0.4.11" -regex = "1.4.2" -reqwest = { version = "0.10", features = ["blocking"] } -tokio = { version = "0.2", features = ["full"] } +anyhow = "1.0.62" +clap = {version = "3.2.17", features = ["cargo", "default"]} +env_logger = "0.9.0" +futures = "0.3.23" +indicatif = "0.17.0" +log = "0.4.17" +once_cell = "1.13.1" +regex = "1.6.0" +reqwest = { version = "0.11.11", features = ["blocking"] } +tokio = { version = "1.20", features = ["full"] } |