aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authormicwoj92 <45581170+micwoj92@users.noreply.github.com>2023-03-21 22:18:42 +0100
committerGitHub <noreply@github.com>2023-03-21 22:18:42 +0100
commitb65438a2762ea7447caa66f646f3609d99dc58d1 (patch)
tree810a9d093ae63bfb96a7faf1cbe5d21b8d708a47 /Cargo.toml
parent78950762a70bffb91255f1c1ce2594a071f0fa84 (diff)
downloadRSS-watcher-b65438a2762ea7447caa66f646f3609d99dc58d1.tar.gz
RSS-watcher-b65438a2762ea7447caa66f646f3609d99dc58d1.zip
Fix future compatibility warning
warning: the following packages contain code that will be rejected by a future version of Rust: html5ever v0.25.1, nom v5.1.2, quick-xml v0.22.0, xml5ever v0.16.2
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8b55119..b4984be 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,12 +8,12 @@ futures = { version = "0.3.*" }
chrono = "0.4"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] }
-feed-rs = "1.0"
-html2md = "0.2.13"
+feed-rs = "1.1"
+html2md = "0.2.14"
mime = "0.3.16"
mysql = { version = "22.0.0", default-features = false, features = ["rustls-tls"] }
flate2 = { version = "*", default-features = false, features = ["zlib"] }
-mysql_common = { version = "*", default-features = false }
+mysql_common = { version = "0.28.2", default-features = false }
log = "0.4"
env_logger = "0.9.0"