Skip to content

Commit

Permalink
Merge pull request #130 from AleoHQ/fix/flaky-networking-test
Browse files Browse the repository at this point in the history
Fixes flaky networking test by reverting `tokio` to prior working version
  • Loading branch information
howardwu committed May 21, 2020
2 parents c4d5a0d + 7e3cc6e commit 576096f
Show file tree
Hide file tree
Showing 5 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 @@ -55,7 +55,7 @@ hex = { version = "0.4.1" }
log = { version = "0.4.8" }
rand = { version = "0.7" }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "0.2.13", features = ["full"] }

[dev-dependencies]
rusty-hook = { version = "0.10.3" }
Expand Down
2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ hex = { version = "0.4.2" }
log = { version = "0.4.8" }
rand = { version = "0.7.3" }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "0.2.13", features = ["full"] }

[dev-dependencies]
futures-await-test = { version = "0.3.0" }
2 changes: 1 addition & 1 deletion console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ reqwest = { version = "0.10", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.53" }
thiserror = { version = "1.0" }
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "0.2.13", features = ["full"] }
2 changes: 1 addition & 1 deletion network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ hex = { version="0.4.2" }
log = { version = "0.4.8" }
rand = { version = "0.7.3" }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "0.2.13", features = ["full"] }

[dev-dependencies]
tokio-test = { version = "0.2.0" }
Expand Down
2 changes: 1 addition & 1 deletion rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jsonrpc-core-client = { version = "14.0.5" }
jsonrpc-derive = { version = "14.0.5" }
jsonrpc-http-server = { version = "14.0.5" }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "0.2.13", features = ["full"] }

[dev-dependencies]
jsonrpc-test = { version = "14.0.5" }
Expand Down

0 comments on commit 576096f

Please sign in to comment.