From d05519735b96f540c87fbeefead4da8872bffd70 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 03:35:36 +0000 Subject: [PATCH] Bump thiserror from 1.0.50 to 1.0.51 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.50 to 1.0.51. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.51) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- minimap-app/Cargo.toml | 2 +- minimap-core/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) mode change 100755 => 100644 Cargo.lock mode change 100755 => 100644 minimap-app/Cargo.toml mode change 100755 => 100644 minimap-core/Cargo.toml diff --git a/Cargo.lock b/Cargo.lock old mode 100755 new mode 100644 index a826c95..d34a265 --- a/Cargo.lock +++ b/Cargo.lock @@ -3033,18 +3033,18 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" [[package]] name = "thiserror" -version = "1.0.50" +version = "1.0.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" +checksum = "f11c217e1416d6f036b870f14e0413d480dbf28edbee1f877abaf0206af43bb7" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.50" +version = "1.0.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" +checksum = "01742297787513b79cf8e29d1056ede1313e2420b7b3b15d0a768b4921f549df" dependencies = [ "proc-macro2", "quote", diff --git a/minimap-app/Cargo.toml b/minimap-app/Cargo.toml old mode 100755 new mode 100644 index 0477675..539326d --- a/minimap-app/Cargo.toml +++ b/minimap-app/Cargo.toml @@ -15,7 +15,7 @@ serde = { version = "1.0", features = ["derive"] } tauri = { version = "1.5.2", features = [] } minimap-core = { path = "../minimap-core" } slotmap = "1.0.7" -thiserror = "1.0.50" +thiserror = "1.0.51" base64 = "0.21.5" paste = "1.0.14" dirs = "5.0.1" diff --git a/minimap-core/Cargo.toml b/minimap-core/Cargo.toml old mode 100755 new mode 100644 index c0862da..c57c5d9 --- a/minimap-core/Cargo.toml +++ b/minimap-core/Cargo.toml @@ -10,7 +10,7 @@ git = ["dep:git2"] [dependencies] sha2 = "0.10.8" -thiserror = "1.0.50" +thiserror = "1.0.51" git2 = { version = "0.18.1", optional = true } indexmap = "2.1.0"