1
0
Fork 0
mirror of https://gitlab.com/news-flash/article_scraper.git synced 2025-07-07 08:05:31 +02:00
article_scraper/article_scraper_cli/Cargo.toml

19 lines
No EOL
581 B
TOML

[package]
name = "article_scraper_cli"
description = "Cli to use the article_scraper lib"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
article_scraper = { path = "../article_scraper/" }
clap = { version = "4.5", features = [ "derive" ] }
simplelog = "0.12"
log = "0.4"
url = "2.5"
reqwest = { version = "0.12", features = ["json", "native-tls", "gzip", "brotli", "stream"] }
tokio = { version = "1", features = ["macros", "fs", "io-util", "rt-multi-thread" ] }
indicatif = "0.17"