diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2022-01-27 11:36:47 +0100 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2022-01-27 11:36:47 +0100 |
commit | a1e0cebd1e620038ad433b2212426e6fe5d927c5 (patch) | |
tree | 7a0b7374a60f9591eb77d1756a72e06b03261294 /Cargo.toml | |
parent | 81f4667eb82bfa45e178ab6ebcc749b0966cd801 (diff) | |
download | RSS-watcher-a1e0cebd1e620038ad433b2212426e6fe5d927c5.tar.gz RSS-watcher-a1e0cebd1e620038ad433b2212426e6fe5d927c5.zip |
:heavy_plus_sign: Remove OpenSSL and use RustTLS instead
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -7,11 +7,13 @@ edition = "2021" futures = { version = "0.3.*" } chrono = "0.4" tokio = { version = "1", features = ["full"] } -reqwest = { version = "0.11", features = ["json"] } +reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] } feed-rs = "1.0" html2md = "0.2.13" mime = "0.3.16" -mysql = "22.0.0" +mysql = { version = "22.0.0", default-features = false, features = ["rustls-tls"] } +flate2 = { version = "*", default-features = false, features = ["zlib"] } +mysql_common = { version = "*", default-features = false } log = "0.4" env_logger = "0.9.0" |