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

chore(deps): bump thiserror 2 #1700

Merged
merged 1 commit into from
Nov 29, 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
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,7 @@ reqwest = { version = "0.12", default-features = false }
schnellru = "0.2.3"
semver = "1.0"
strum = { version = "0.26", default-features = false }
thiserror = "1.0"
thiserror-no-std = "2.0.2"
thiserror = { version = "2.0", default-features = false }
url = "2.5"

# misc-testing
Expand Down
2 changes: 1 addition & 1 deletion crates/json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ workspace = true
alloy-primitives = { workspace = true, features = ["std", "serde", "map"] }
serde.workspace = true
serde_json = { workspace = true, features = ["std", "raw_value"] }
thiserror.workspace = true
thiserror = { workspace = true, features = ["std"] }
tracing.workspace = true
alloy-sol-types.workspace = true
2 changes: 1 addition & 1 deletion crates/transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ futures-util.workspace = true
futures-utils-wasm.workspace = true
serde_json = { workspace = true, features = ["raw_value"] }
serde.workspace = true
thiserror.workspace = true
thiserror = { workspace = true, features = ["std"] }
tower.workspace = true
url.workspace = true
tracing.workspace = true
Expand Down