Skip to content

Commit

Permalink
chore(deps): update thiserror requirement from 1 to 2
Browse files Browse the repository at this point in the history
Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror) to permit the latest version.
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.0...2.0.0)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 6, 2024
1 parent e3919b0 commit 8c551ef
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/http-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ rustls = { version = "0.23.7", default-features = false, optional = true, featur
rustls-platform-verifier = { version = "0.3", optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1"
thiserror = "1"
thiserror = "2"
tokio = { version = "1.23.1", features = ["time"] }
tracing = "0.1.34"
tower = { workspace = true, features = ["util"] }
Expand Down
2 changes: 1 addition & 1 deletion client/transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jsonrpsee-core = { workspace = true, features = ["client"] }
tracing = "0.1.34"

# optional
thiserror = { version = "1", optional = true }
thiserror = { version = "2", optional = true }
futures-util = { version = "0.3.14", default-features = false, features = ["alloc"], optional = true }
http = { version = "1", optional = true }
tokio-util = { version = "0.7", features = ["compat"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish = true
[dependencies]
async-trait = "0.1"
jsonrpsee-types = { workspace = true }
thiserror = "1"
thiserror = "2"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = { version = "1", features = ["raw_value"] }
tracing = "0.1.34"
Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ http = "1"
http-body = "1"
http-body-util = "0.1.0"
tower = { workspace = true, features = ["util"] }
thiserror = "1"
thiserror = "2"
route-recognizer = "0.3.1"
pin-project = "1.1.3"

Expand Down
2 changes: 1 addition & 1 deletion types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ publish = true
[dependencies]
serde = { version = "1", default-features = false, features = ["derive"] }
serde_json = { version = "1", default-features = false, features = ["alloc", "raw_value", "std"] }
thiserror = "1.0"
thiserror = "2.0"
http = "1"

0 comments on commit 8c551ef

Please sign in to comment.