From 03aab2e0884c1c4d7a820823ac52e26af7ffed6a Mon Sep 17 00:00:00 2001 From: Philip Kristoffersen Date: Mon, 18 Apr 2022 07:14:21 +0200 Subject: [PATCH] Update steam shortcuts util to 1.1.7 This solves problem where shortcut parsing would fail if there was no backspace character --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ee17325..01ce228 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2703,8 +2703,9 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "steam_shortcuts_util" -version = "1.1.6" -source = "git+https://github.com/PhilipK/steam_shortcuts_util?rev=c8953ecfc9c612be49c537fb3add683cd83f9379#c8953ecfc9c612be49c537fb3add683cd83f9379" +version = "1.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67248b9d183120bbc68813546d1aa0ed17230da95674f4fbae6e1060d97c0af8" dependencies = [ "ascii", "crc32fast", diff --git a/Cargo.toml b/Cargo.toml index 3a353da..8666575 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -steam_shortcuts_util = { git = "https://github.com/PhilipK/steam_shortcuts_util",rev="c8953ecfc9c612be49c537fb3add683cd83f9379" } +steam_shortcuts_util = "1.1.7" steamgriddb_api = "^0.2,0" serde = { version = "^1.0.136", features = ["derive"] } serde_json = "^1.0.79"