Bump up all dependencies

Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
baalajimaestro 2022-08-22 10:24:27 +05:30
parent 61d1182acb
commit 8fc2e167f4
Signed by: baalajimaestro
GPG key ID: F93C394FE9BBAFD5
2 changed files with 4 additions and 6 deletions

View file

@ -7,7 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
imap = "3.0.0-alpha.4" imap = "3.0.0-alpha.8"
base64 = "0.13.0" base64 = "0.13.0"
regex = "1.5.4" regex = "1.6.0"
rustls-connector = "0.13.1" rustls-connector = "0.16.1"

View file

@ -1,5 +1,5 @@
// //
//Copyright © 2020 Maestro Creativescape //Copyright © 2020-22 Maestro Creativescape
// //
// SPDX-License-Identifier: GPL-3.0 // SPDX-License-Identifier: GPL-3.0
// //
@ -10,8 +10,6 @@ use imap;
use regex::Regex; use regex::Regex;
fn main() { fn main() {
// To connect to the gmail IMAP server with this you will need to allow unsecure apps access.
// See: https://support.google.com/accounts/answer/6010255?hl=en
fetch_inbox_top().unwrap(); fetch_inbox_top().unwrap();
} }