diff --git a/Cargo.toml b/Cargo.toml index 03f5662..4f0884f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,12 @@ [workspace] - members = [ "article_scraper", "article_scraper_cli", -] \ No newline at end of file +] + +[workspace.package] +version = "2.1.1" +authors = ["Jan Lukas Gernert "] +edition = "2021" +license = "GPL-3.0-or-later" +repository = "https://gitlab.com/news-flash/article_scraper" \ No newline at end of file diff --git a/article_scraper/Cargo.toml b/article_scraper/Cargo.toml index 6e4d003..100766c 100644 --- a/article_scraper/Cargo.toml +++ b/article_scraper/Cargo.toml @@ -1,17 +1,18 @@ [package] name = "article_scraper" -version = "2.1.0" -authors = ["Jan Lukas Gernert "] -edition = "2018" -license = "GPL-3.0-or-later" description = "Scrap article contents from the web. Powered by fivefilters full text feed configurations & mozilla readability." -repository = "https://gitlab.com/news-flash/article_scraper" +version.workspace = true +authors.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true + readme = "../Readme.md" keywords = ["article", "scrape", "full-text", "readability"] exclude = ["resources/tests"] [dependencies] -thiserror = "1.0" +thiserror = "2.0" libxml = "0.3" reqwest = { version = "0.12", features = ["json", "native-tls", "gzip", "brotli", "stream"] } tokio = { version = "1", features = ["macros", "fs", "io-util"] } diff --git a/article_scraper/ftr-site-config b/article_scraper/ftr-site-config index e9112fc..ccde390 160000 --- a/article_scraper/ftr-site-config +++ b/article_scraper/ftr-site-config @@ -1 +1 @@ -Subproject commit e9112fc55800cae00ca70f4c38248a3ef4228861 +Subproject commit ccde390b11893cbafdc84f74b449ddc3cc05c024 diff --git a/article_scraper_cli/Cargo.toml b/article_scraper_cli/Cargo.toml index b91abc5..22edcf1 100644 --- a/article_scraper_cli/Cargo.toml +++ b/article_scraper_cli/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "article_scraper_cli" -version = "2.1.0" -authors = ["Jan Lukas Gernert "] -edition = "2018" -license = "GPL-3.0-or-later" description = "Cli to use the article_scraper lib" -repository = "https://gitlab.com/news-flash/article_scraper" +version.workspace = true +authors.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true + [dependencies] article_scraper = { path = "../article_scraper/" }