Skip to content

Commit d809661

Browse files
committed
chore: update dependencies
1 parent f1418d6 commit d809661

File tree

3 files changed

+84
-73
lines changed

3 files changed

+84
-73
lines changed

Cargo.lock

Lines changed: 79 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ license = "MIT"
88
readme = "README.md"
99

1010
[dependencies]
11-
json-patch = "3"
12-
jsonptr = "0.6.3"
11+
json-patch = "4"
12+
jsonptr = "0.7.1"
1313
serde_json = "1"
14-
thiserror = "1"
14+
thiserror = "2"
1515

1616
[dev-dependencies]
1717
assertables = "9.3.0"

src/errors.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use jsonptr::assign::AssignError;
1+
use jsonptr::assign;
22
use jsonptr::index::ParseIndexError;
33
use jsonptr::resolve::ResolveError;
44
pub use thiserror::Error;
@@ -21,7 +21,7 @@ pub enum PatchError {
2121
ResolveError(#[from] ResolveError),
2222

2323
#[error("json path assign error: {0}")]
24-
AssignError(#[from] AssignError),
24+
AssignError(#[from] assign::Error),
2525

2626
#[error("index parse error: {0}")]
2727
ParseIndexError(#[from] ParseIndexError),

0 commit comments

Comments
 (0)