use a released version of Tokio (#40)

This commit is contained in:
Carl Lerche
2020-05-12 16:40:34 -07:00
committed by GitHub
parent 4bc7af4455
commit 84f7086238
2 changed files with 169 additions and 154 deletions

View File

@@ -8,7 +8,7 @@ version = "0.1.0"
atoi = "0.3.2"
bytes = "0.5.4"
clap = { git = "https://github.com/clap-rs/clap/" }
tokio = { git = "https://github.com/tokio-rs/tokio", features = ["full"] }
tokio = { version = "0.2.20", features = ["full"] }
tracing = "0.1.13"
tracing-futures = { version = "0.2.3", features = ["tokio"] }
tracing-subscriber = "0.2.2"
@@ -16,4 +16,4 @@ async-stream = "0.2.1"
[dev-dependencies]
# Enable test-utilities in dev mode only. This is mostly for tests.
tokio = { git = "https://github.com/tokio-rs/tokio", features = ["test-util"] }
tokio = { version = "0.2", features = ["test-util"] }