summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-07-17 12:16:41 +0000
committerTim Oram <dev@mitmaro.ca>2023-07-17 11:34:54 -0230
commit838ddbbde7a23f0f2d6280a6da60b93468055e12 (patch)
tree973c0900dcf18d4377892dac36b89a912bda85f5
parentf94d35a0e2146607550fee524bbeeab42286b441 (diff)
Bump thiserror from 1.0.38 to 1.0.43
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.38 to 1.0.43. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.38...1.0.43) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock10
-rw-r--r--src/config/Cargo.toml2
-rw-r--r--src/display/Cargo.toml2
-rw-r--r--src/git/Cargo.toml2
-rw-r--r--src/runtime/Cargo.toml2
-rw-r--r--src/todo_file/Cargo.toml2
6 files changed, 10 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a85de71..ca3147e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1014,22 +1014,22 @@ dependencies = [
[[package]]
name = "thiserror"
-version = "1.0.38"
+version = "1.0.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
+checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
-version = "1.0.38"
+version = "1.0.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
+checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f"
dependencies = [
"proc-macro2",
"quote",
- "syn 1.0.104",
+ "syn 2.0.26",
]
[[package]]
diff --git a/src/config/Cargo.toml b/src/config/Cargo.toml
index 8db8ac3..f8b9e63 100644
--- a/src/config/Cargo.toml
+++ b/src/config/Cargo.toml
@@ -15,7 +15,7 @@ readme = "README.md"
name = "config"
[dependencies]
-thiserror = "1.0.38"
+thiserror = "1.0.43"
girt-git = {version = "2.2.0", path = "../../src/git"}
proc-macro2 = "1.0.66" # TODO: remove override of indirect dependency
diff --git a/src/display/Cargo.toml b/src/display/Cargo.toml
index 2b60782..b494f74 100644
--- a/src/display/Cargo.toml
+++ b/src/display/Cargo.toml
@@ -16,7 +16,7 @@ name = "display"
[dependencies]
crossterm = "0.26.1"
-thiserror = "1.0.38"
+thiserror = "1.0.43"
girt-config = {version = "2.2.0", path = "../config"}
[dev-dependencies]
diff --git a/src/git/Cargo.toml b/src/git/Cargo.toml
index 0720f39..1e75274 100644
--- a/src/git/Cargo.toml
+++ b/src/git/Cargo.toml
@@ -19,7 +19,7 @@ chrono = "0.4.23"
lazy_static = "1.4.0"
parking_lot = "0.12.1"
tempfile = "3.6.0"
-thiserror = "1.0.38"
+thiserror = "1.0.43"
[dependencies.git2]
version = "=0.15.0"
diff --git a/src/runtime/Cargo.toml b/src/runtime/Cargo.toml
index 8990cc6..3a80d9f 100644
--- a/src/runtime/Cargo.toml
+++ b/src/runtime/Cargo.toml
@@ -15,7 +15,7 @@ readme = "../../README.md"
name = "runtime"
[dependencies]
-thiserror = "1.0.38"
+thiserror = "1.0.43"
crossbeam-channel = "0.5.8"
parking_lot = "0.12.1"
diff --git a/src/todo_file/Cargo.toml b/src/todo_file/Cargo.toml
index d0a000c..023347b 100644
--- a/src/todo_file/Cargo.toml
+++ b/src/todo_file/Cargo.toml
@@ -16,7 +16,7 @@ name = "todo_file"
[dependencies]
tempfile = "3.6.0"
-thiserror = "1.0.38"
+thiserror = "1.0.43"
version-track = "0.1.0"
[dev-dependencies]