From 1b0c7c7863e8eb7d1596d884f5d84e32672946dd Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sun, 21 Aug 2022 12:51:43 +0200 Subject: [PATCH] * bump chrono (RUSTSEC-2020-0159) * bump tokio (RUSTSEC-2021-0124) * bump regex (RUSTSEC-2022-0013) --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6e70b3a..a5fb37d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,10 +11,10 @@ publish = false [dependencies] reqwest = { version = "0.11" } -tokio = { version = "1", features = ["full"] } +tokio = { version = ">=1.13.1", features = ["full"] } scraper = "0.13" -regex = "1" -chrono = "0.4" +regex = ">=1.5.5" +chrono = ">=0.4.20" ics = "0.5" uuid = { version = "1.1", features = ["v4", "fast-rng"] } clap = { version = "3.2", features = ["derive"] }