From 3a1e612b25f35c40e453b8cc2cee4f0e2815cb6d Mon Sep 17 00:00:00 2001 From: Philip Date: Sun, 26 Sep 2021 07:45:46 +0200 Subject: [PATCH] Correct reqwest version --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3be40146..962a76f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,9 +8,9 @@ edition = "2018" [dependencies] steam_shortcuts_util="1.1.2" steamgriddb_api="0.2,0" -serde={version="^1.0.130", features=["derive"]} +serde={version="1.0.130", features=["derive"]} serde_json = "1.0.68" -tokio = { version = "^1.11.0", features = ["full"] } -reqwest = { reqwest = "^0.11.4", features = ["default"] } -config = "^0.11.0" -failure = "^0.1.8" \ No newline at end of file +tokio = { version = "1.11.0", features = ["full"] } +reqwest = { version = "0.11.4", features = ["default"] } +config = "0.11.0" +failure = "0.1.8" \ No newline at end of file