mirror of
https://gitlab.com/news-flash/article_scraper.git
synced 2025-07-07 08:05:31 +02:00
add cli crate
This commit is contained in:
parent
9832fa2c77
commit
4a7349a5fa
244 changed files with 3308 additions and 29 deletions
11
article_scraper_cli/Cargo.toml
Normal file
11
article_scraper_cli/Cargo.toml
Normal 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/" }
|
3
article_scraper_cli/src/main.rs
Normal file
3
article_scraper_cli/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
pub fn main() {
|
||||
println!("hello world");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue