Skip to content

Commit

Permalink
Merge pull request #250 from iotaledger/patch/tokio-version
Browse files Browse the repository at this point in the history
chore(p2p): bump tokio.rs version
  • Loading branch information
elenaf9 committed Aug 26, 2021
2 parents 42219f4 + c3664bc commit badc31b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions p2p/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ serde = { version = "1.0", default-features = false, features = [ "alloc", "deri
serde_json = { version = "1.0", default-features = false, features = [ "alloc" ] }
smallvec = "1.6.1"
stronghold-derive = { path = "../derive", version = "0.2.0" }
tokio = { version = "1.7", default-features = false, features = ["rt", "sync"] }
tokio = { version = "1.10", default-features = false, features = ["rt", "sync"] }
wasm-timer = "0.2.5"

[features]
Expand All @@ -32,5 +32,5 @@ tcp-transport = ["libp2p/tcp-tokio", "libp2p/dns-tokio", "libp2p/websocket"]

[dev-dependencies]
rand = "0.8.3"
tokio = {version = "1.7", features = ["time", "macros"]}
tokio = {version = "1.10", features = ["time", "macros"]}
libp2p = { version = "0.39", default-features = false, features = ["tcp-tokio"] }
2 changes: 1 addition & 1 deletion p2p/tests/test_firewall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type TestPeer = StrongholdP2p<Request, Response, RequestPermission>;

macro_rules! expect_ok (
($expression:expr, $config:expr) => {
$expression.await.expect(&format!("Unexpected Error on unwrap; config: {}", $config));
$expression.await.expect(&format!("Unexpected Error on unwrap; config: {}", $config))
};
);

Expand Down

0 comments on commit badc31b

Please sign in to comment.