Merge pull request #225 from deftsp/shihpin

fix: could not find `codec` in `tokio_util`
This commit is contained in:
Waffle Maybe 2022-06-14 12:04:48 +04:00 committed by GitHub
commit 365dac6d6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -7,8 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## unreleased
- Build with particular crates versions (enable `"codec"` feature of `tokio-util`) ([#225][pr225])
- Fix incorrect panic in `User::is_channel` ([#222][pr222])
[pr225]: https://github.com/teloxide/teloxide-core/pull/225
[pr222]: https://github.com/teloxide/teloxide-core/pull/222
## 0.6.1 - 2022-06-02

View file

@ -23,7 +23,7 @@ exclude = [
[dependencies]
futures = "0.3.5"
tokio = { version = "1.12.0", features = ["fs"] }
tokio-util = "0.6.0"
tokio-util = { version = "0.6.0", features = ["codec"] }
pin-project = "1.0.3"
bytes = "1.0.0"
reqwest = { version = "0.11.10", features = ["json", "stream", "multipart"], default-features = false }