Skip to content

Commit 84c3f51

Browse files
authored
Merge pull request #1315 from TheBlueMatt/2022-02-fix-tokio-msrv
Restrict tokio to 1.14 as a dev-dependency
2 parents de1aca5 + aca5b69 commit 84c3f51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lightning-block-sync/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ serde_json = { version = "1.0", optional = true }
2222
chunked_transfer = { version = "1.4", optional = true }
2323

2424
[dev-dependencies]
25-
tokio = { version = "1.0", features = [ "macros", "rt" ] }
25+
tokio = { version = "~1.14", features = [ "macros", "rt" ] }

lightning-net-tokio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ lightning = { version = "0.0.104", path = "../lightning" }
1616
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "sync", "net", "time" ] }
1717

1818
[dev-dependencies]
19-
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
19+
tokio = { version = "~1.14", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }

0 commit comments

Comments
 (0)