Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dep: bump thiserror from 1.0.69 to 2.0.9 #617

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 32 additions & 52 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rsonpath-syntax = { version = "0.3.1", path = "./crates/rsonpath-syntax" }
arbitrary = { version = "1.4.1" }
cfg-if = "1.0.0"
log = "0.4.22"
thiserror = "1.0.66"
thiserror = "2.0.9"
# Dev-dependencies
itertools = "0.13.0"
pretty_assertions = "1.4.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/rsonpath-benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jni = { version = "0.21.1", features = ["invocation", "default"] }
jsonpath-rust = "0.7.3"
libc = "0.2.168"
lazy_static = "1.5.0"
serde_json = "1.0.133"
serde_json = "1.0.134"
sha2 = "0.10.8"
ouroboros = "0.18.4"
reqwest = { version = "0.12.9", features = ["blocking"] }
rsonpath-lib = { version = "0.9.1", default-features = false }
rsonpath-syntax = { version = "0.3.1", default-features = false }
serde_json_path = "0.7.1"
tar = "0.4.43"
thiserror = "1.0.64"
thiserror = "2.0.9"

[patch.crates-io]
rsonpath-lib = { path = "../rsonpath-lib" }
Expand Down
4 changes: 2 additions & 2 deletions crates/rsonpath-benchmarks/src/dataset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -523,13 +523,13 @@ pub enum DatasetError {
#[error(
"Checksum validation failed. \
The URL source might be corrupted. \
Expected JSON from {0} to have SHA2 checksum of {}, but it has {}.", format_hex_string(.1), format_hex_string(.2)
Expected JSON from {0} to have SHA2 checksum of {exp}, but it has {act}.", exp = format_hex_string(.1), act = format_hex_string(.2)
)]
InvalidJsonChecksum(&'static str, Sha256Digest, Sha256Digest),
#[error(
"Checksum validation failed. \
The URL source might be corrupted. \
Expected archive from {0} to have SHA2 checksum of {}, but it has {}.", format_hex_string(.1), format_hex_string(.2)
Expected archive from {0} to have SHA2 checksum of {exp}, but it has {act}.", exp = format_hex_string(.1), act = format_hex_string(.2)
)]
InvalidArchiveChecksum(&'static str, Sha256Digest, Sha256Digest),
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Ignore Gradle project-specific cache directory
.gradle
gradle/wrapper/gradle-wrapper.jar

# Ignore Gradle build output directory
build
Expand Down
Binary file not shown.
8 changes: 4 additions & 4 deletions fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading