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

update thiserror, ftr-site-config submodule and bump version

This commit is contained in:
Jan Lukas Gernert 2025-01-17 02:55:59 +01:00
parent 7fcb781c68
commit 89eb87fa85
4 changed files with 22 additions and 14 deletions

View file

@ -1,6 +1,12 @@
[workspace]
members = [
"article_scraper",
"article_scraper_cli",
]
]
[workspace.package]
version = "2.1.1"
authors = ["Jan Lukas Gernert <jangernert@gmail.com>"]
edition = "2021"
license = "GPL-3.0-or-later"
repository = "https://gitlab.com/news-flash/article_scraper"

View file

@ -1,17 +1,18 @@
[package]
name = "article_scraper"
version = "2.1.0"
authors = ["Jan Lukas Gernert <jangernert@gmail.com>"]
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"] }

@ -1 +1 @@
Subproject commit e9112fc55800cae00ca70f4c38248a3ef4228861
Subproject commit ccde390b11893cbafdc84f74b449ddc3cc05c024

View file

@ -1,11 +1,12 @@
[package]
name = "article_scraper_cli"
version = "2.1.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"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
article_scraper = { path = "../article_scraper/" }