Skip to content

Commit

Permalink
chore: use flexible rand version (0.8) (#4)
Browse files Browse the repository at this point in the history
* relax rand version

* include rt feature for tokio
  • Loading branch information
borngraced authored Dec 9, 2024
1 parent 0a5a4f7 commit 6ee014d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tokio = { version = "1.22", features = ["full"] }
url = "2.3"
warp = { version = "0.3", default-features = false }
serde_json = "1.0"
rand = "0.8.5"
rand = "0.8"
futures-util = "0.3"
once_cell = "1.19"

Expand Down
2 changes: 1 addition & 1 deletion pairing_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ anyhow = "1.0.86"
hex = "0.4.2"
lazy_static = "1.4"
paste = "1.0.15"
rand = "0.8.5"
rand = "0.8"
regex = "1.7"
relay_client = { path = "../relay_client" }
relay_rpc = { path = "../relay_rpc" }
Expand Down
4 changes: 2 additions & 2 deletions relay_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ futures-util = { version = "0.3", default-features = false, features = [
] }
http = "1.0.0"
pin-project = "1.0"
rand = { version = "0.8.5", features = ["std", "small_rng"] }
rand = { version = "0.8", features = ["std", "small_rng"] }
relay_rpc = { path = "../relay_rpc" }
reqwest = { version = "0.12.2", optional = true, features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_qs = "0.10"
thiserror = "1.0"
tokio = { version = "1.22", features = ["sync", "macros"] }
tokio = { version = "1.22", features = ["rt", "sync", "macros"] }
tokio-tungstenite-wasm = { git = "https://github.com/KomodoPlatform/tokio-tungstenite-wasm.git", features = ["rustls-tls-native-roots"], rev = "8fc7e2f" }
tokio-util = "0.7"
url = "2.3"
Expand Down
2 changes: 1 addition & 1 deletion relay_rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jsonwebtoken = "8.1"
k256 = { version = "0.13", optional = true }
once_cell = "1.16"
paste = "1.0.15"
rand = "0.8.5"
rand = "0.8"
regex = "1.7"
serde = { version = "1.0", features = ["derive", "rc"] }
serde-aux = { version = "4.1", default-features = false }
Expand Down

0 comments on commit 6ee014d

Please sign in to comment.