mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-10 20:12:25 +01:00
Merge pull request #225 from deftsp/shihpin
fix: could not find `codec` in `tokio_util`
This commit is contained in:
commit
365dac6d6a
2 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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 }
|
||||
|
|
Loading…
Reference in a new issue