Merge pull request #196 from belak/irc-proto-features

Properly declare required tokio-util features
This commit is contained in:
Aaron Weiss 2020-01-29 14:05:18 -05:00 committed by GitHub
commit 2339ca5fe6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,5 +20,5 @@ default = ["tokio", "tokio-util", "bytes"]
bytes = { version = "0.5", optional = true }
encoding = "0.2"
thiserror = "1.0.2"
tokio-util = { version = "0.2.0", optional = true }
tokio-util = { version = "0.2.0", features = ["codec"], optional = true }
tokio = { version = "0.2.0", optional = true }