Skip to content

Commit

Permalink
fix: loosen version constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
chris13524 committed Feb 14, 2024
1 parent b031367 commit 8a70282
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ relay_rpc = { path = "./relay_rpc", optional = true }
[dev-dependencies]
anyhow = "1"
structopt = { version = "0.3", default-features = false }
tokio = { version = "1.22", features = ["full"] }
url = "2.3"
tokio = { version = "1", features = ["full"] }
url = "2"
warp = { version = "0.3", default-features = false }
serde_json = "1.0"
serde_json = "1"

[[example]]
name = "websocket_client"
Expand Down
10 changes: 5 additions & 5 deletions relay_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ rustls = ["tokio-tungstenite/rustls-tls-native-roots"]
[dependencies]
relay_rpc = { path = "../relay_rpc" }
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_qs = "0.10"
pin-project = "1.0"
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
url = "2.3"
url = "2"
http = "0.2"

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

# WebSocket client dependencies.
tokio = { version = "1.22", features = ["rt", "time", "sync", "macros", "rt-multi-thread"] }
tokio = { version = "1", features = ["rt", "time", "sync", "macros", "rt-multi-thread"] }
tokio-tungstenite = "0.20"
futures-channel = "0.3"
tokio-stream = "0.1"
Expand Down
24 changes: 12 additions & 12 deletions relay_rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,32 +26,32 @@ derive_more = { version = "0.99", default-features = false, features = [
"as_ref",
"as_mut",
] }
serde = { version = "1.0", features = ["derive", "rc"] }
serde-aux = { version = "4.1", default-features = false }
serde_json = "1.0"
thiserror = "1.0"
serde = { version = "1", features = ["derive", "rc"] }
serde-aux = { version = "4", default-features = false }
serde_json = "1"
thiserror = "1"
ed25519-dalek = { git = "https://github.com/dalek-cryptography/ed25519-dalek.git", rev = "7529d65" }
rand = "0.7"
chrono = { version = "0.4", default-features = false, features = [
"std",
"clock",
] }
regex = "1.7"
once_cell = "1.16"
jsonwebtoken = "8.1"
regex = "1"
once_cell = "1"
jsonwebtoken = "8"
k256 = { version = "0.13", optional = true }
sha3 = { version = "0.10", optional = true }
sha2 = { version = "0.10.6" }
sha2 = { version = "0.10" }
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 }
alloy-transport-http = { git = "https://github.com/alloy-rs/alloy.git", rev = "e6f98e1", optional = true }
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy.git", rev = "e6f98e1", optional = true }
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy.git", rev = "e6f98e1", optional = true }
alloy-json-abi = { version = "0.6.2", optional = true }
alloy-sol-types = { version = "0.6.2", optional = true }
alloy-primitives = { version = "0.6.2", optional = true }
alloy-json-abi = { version = "0.6", optional = true }
alloy-sol-types = { version = "0.6", optional = true }
alloy-primitives = { version = "0.6", optional = true }

[dev-dependencies]
tokio = { version = "1.35.1", features = ["test-util", "macros"] }
tokio = { version = "1", features = ["test-util", "macros"] }

0 comments on commit 8a70282

Please sign in to comment.