Skip to content

Commit

Permalink
fix: bump http deps (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris13524 authored Apr 15, 2024
1 parent 99a8b93 commit b4c8f4c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion blockchain_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
relay_rpc = { path = "../relay_rpc" }
reqwest = "0.11"
reqwest = { version = "0.12.2", features = ["json"] }
serde = "1.0"
tokio = { version = "1.0", features = ["test-util", "macros"] }
tracing = "0.1.40"
Expand Down
6 changes: 3 additions & 3 deletions relay_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ serde_qs = "0.10"
pin-project = "1.0"
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
url = "2.3"
http = "0.2"
http = "1.0.0"

# HTTP client dependencies.
reqwest = { version = "0.11", features = ["json"] }
reqwest = { version = "0.12.2", features = ["json"] }

# WebSocket client dependencies.
tokio = { version = "1.22", features = ["rt", "time", "sync", "macros", "rt-multi-thread"] }
tokio-tungstenite = "0.20"
tokio-tungstenite = "0.21.0"
futures-channel = "0.3"
tokio-stream = "0.1"
tokio-util = "0.7"
1 change: 0 additions & 1 deletion relay_rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jsonwebtoken = "8.1"
k256 = { version = "0.13", optional = true }
sha3 = { version = "0.10", optional = true }
sha2 = { version = "0.10.6" }
reqwest = { version = "0.11", features = ["default-tls"] }
url = "2"
alloy-providers = { git = "https://github.com/alloy-rs/alloy.git", rev = "e6f98e1", optional = true }
alloy-transport = { git = "https://github.com/alloy-rs/alloy.git", rev = "e6f98e1", optional = true }
Expand Down

0 comments on commit b4c8f4c

Please sign in to comment.