mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-01-19 05:43:55 +01:00
Restrict tokio to 1.14 as a dev-dependency
This maintains our MSRV for simple `cargo test` runs, but doesn't restrict users to any specific 1.X tokio version.
This commit is contained in:
parent
8e7f241149
commit
aca5b6934a
@ -22,4 +22,4 @@ serde_json = { version = "1.0", optional = true }
|
||||
chunked_transfer = { version = "1.4", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.0", features = [ "macros", "rt" ] }
|
||||
tokio = { version = "~1.14", features = [ "macros", "rt" ] }
|
||||
|
@ -16,4 +16,4 @@ lightning = { version = "0.0.104", path = "../lightning" }
|
||||
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "sync", "net", "time" ] }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
|
||||
tokio = { version = "~1.14", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
|
||||
|
Loading…
Reference in New Issue
Block a user