From 0aa79d6bc4729620870456380c3fd7e9416993e0 Mon Sep 17 00:00:00 2001 From: Philip Kristoffersen Date: Fri, 1 Apr 2022 18:18:45 +0200 Subject: [PATCH] Upgrade major dependencies --- Cargo.lock | 20 ++++++++++++++++---- Cargo.toml | 26 +++++++++++++------------- 2 files changed, 29 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 95f658d..4bd4718 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -98,7 +98,7 @@ dependencies = [ "futures", "is_executable", "nom 7.1.1", - "nom_locate", + "nom_locate 4.0.0", "reqwest", "rusty-leveldb", "serde 1.0.136", @@ -245,12 +245,13 @@ dependencies = [ [[package]] name = "dashmap" -version = "4.0.2" +version = "5.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" +checksum = "4c8858831f7781322e539ea39e72449c46b059638250c14344fec8d0aa6e539c" dependencies = [ "cfg-if", "num_cpus", + "parking_lot", "serde 1.0.136", ] @@ -861,6 +862,17 @@ dependencies = [ "nom 6.2.1", ] +[[package]] +name = "nom_locate" +version = "4.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37794436ca3029a3089e0b95d42da1f0b565ad271e4d3bb4bad0c7bb70b10605" +dependencies = [ + "bytecount", + "memchr", + "nom 7.1.1", +] + [[package]] name = "ntapi" version = "0.3.7" @@ -1321,7 +1333,7 @@ dependencies = [ "ascii", "crc32fast", "nom 6.2.1", - "nom_locate", + "nom_locate 3.0.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 9a859b8..ca49a7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,27 +7,27 @@ edition = "2021" [dependencies] steam_shortcuts_util = {git="https://github.com/PhilipK/steam_shortcuts_util"} steamgriddb_api = "^0.2,0" -serde = { version = "^1.0.130", features = ["derive"] } -serde_json = "^1.0.68" +serde = { version = "^1.0.136", features = ["derive"] } +serde_json = "^1.0.79" tokio = { version = "^1.17.0", features = ["full"] } -reqwest = { version = "^0.11.4", default_features = false } +reqwest = { version = "^0.11.10", default_features = false } config = "^0.11.0" failure = "^0.1.8" #https://fltk-rs.github.io/fltk-rs/ -fltk = { version = "^1.2", features = ["fltk-bundled"], optional = true } -nom = "^7.0.*" -nom_locate = "^3.0.*" +fltk = { version = "^1.3.2", features = ["fltk-bundled"], optional = true } +nom = "^7.1.1" +nom_locate = "^4.0.0" flate2 = "^1.0.22" toml = { version = "^0.5.8", optional = true } -futures = { version = "^0.3.17" } -dashmap = { version = "^4.0.2", features = ["serde"] } -fltk-theme = {version ="0.4" , optional = true } -is_executable = "1.0.1" -rusty-leveldb = "0.3.6" -base64="0.13.0" +futures = { version = "^0.3.21" } +dashmap = { version = "^5.2.0", features = ["serde"] } +fltk-theme = {version ="^0.4.2" , optional = true } +is_executable = "^1.0.1" +rusty-leveldb = "^0.3.6" +base64="^0.13.0" [build-dependencies] -fl2rust = { version = "0.4", optional = true } +fl2rust = { version = "^0.4", optional = true } [features] # default = ["ui"]