1
0
Fork 0
mirror of https://gitlab.com/news-flash/article_scraper.git synced 2025-07-07 16:15:32 +02:00

add cli crate

This commit is contained in:
Jan Lukas Gernert 2023-04-04 08:42:04 +02:00
parent 9832fa2c77
commit 4a7349a5fa
244 changed files with 3308 additions and 29 deletions

View file

@ -0,0 +1,11 @@
[package]
name = "article_scraper_cli"
version = "2.0.0-alpha.0"
authors = ["Jan Lukas Gernert <jangernert@gmail.com>"]
edition = "2018"
license = "GPL-3.0-or-later"
description = "Cli to use the article_scraper lib"
repository = "https://gitlab.com/news-flash/article_scraper"
[dependencies]
article_scraper = { path = "../article_scraper/" }

View file

@ -0,0 +1,3 @@
pub fn main() {
println!("hello world");
}