Skip to content

Commit f040b2a

Browse files
authored
dep: bump thiserror from 1.0.69 to 2.0.9 (#617)
1 parent 14d71d3 commit f040b2a

File tree

7 files changed

+42
-61
lines changed

7 files changed

+42
-61
lines changed

Cargo.lock

+32-52
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ rsonpath-syntax = { version = "0.3.1", path = "./crates/rsonpath-syntax" }
1919
arbitrary = { version = "1.4.1" }
2020
cfg-if = "1.0.0"
2121
log = "0.4.22"
22-
thiserror = "1.0.66"
22+
thiserror = "2.0.9"
2323
# Dev-dependencies
2424
itertools = "0.13.0"
2525
pretty_assertions = "1.4.1"

crates/rsonpath-benchmarks/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ jni = { version = "0.21.1", features = ["invocation", "default"] }
3131
jsonpath-rust = "0.7.3"
3232
libc = "0.2.168"
3333
lazy_static = "1.5.0"
34-
serde_json = "1.0.133"
34+
serde_json = "1.0.134"
3535
sha2 = "0.10.8"
3636
ouroboros = "0.18.4"
3737
reqwest = { version = "0.12.9", features = ["blocking"] }
3838
rsonpath-lib = { version = "0.9.1", default-features = false }
3939
rsonpath-syntax = { version = "0.3.1", default-features = false }
4040
serde_json_path = "0.7.1"
4141
tar = "0.4.43"
42-
thiserror = "1.0.64"
42+
thiserror = "2.0.9"
4343

4444
[patch.crates-io]
4545
rsonpath-lib = { path = "../rsonpath-lib" }

crates/rsonpath-benchmarks/src/dataset.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -523,13 +523,13 @@ pub enum DatasetError {
523523
#[error(
524524
"Checksum validation failed. \
525525
The URL source might be corrupted. \
526-
Expected JSON from {0} to have SHA2 checksum of {}, but it has {}.", format_hex_string(.1), format_hex_string(.2)
526+
Expected JSON from {0} to have SHA2 checksum of {exp}, but it has {act}.", exp = format_hex_string(.1), act = format_hex_string(.2)
527527
)]
528528
InvalidJsonChecksum(&'static str, Sha256Digest, Sha256Digest),
529529
#[error(
530530
"Checksum validation failed. \
531531
The URL source might be corrupted. \
532-
Expected archive from {0} to have SHA2 checksum of {}, but it has {}.", format_hex_string(.1), format_hex_string(.2)
532+
Expected archive from {0} to have SHA2 checksum of {exp}, but it has {act}.", exp = format_hex_string(.1), act = format_hex_string(.2)
533533
)]
534534
InvalidArchiveChecksum(&'static str, Sha256Digest, Sha256Digest),
535535
}

crates/rsonpath-benchmarks/src/implementations/jsurferShim/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Ignore Gradle project-specific cache directory
22
.gradle
3+
gradle/wrapper/gradle-wrapper.jar
34

45
# Ignore Gradle build output directory
56
build

fuzz/Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)