mirror of
https://github.com/teloxide/teloxide.git
synced 2025-03-24 23:57:38 +01:00
commit
461e4d6fbf
2 changed files with 10 additions and 4 deletions
|
@ -6,9 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [unreleased]
|
## [unreleased]
|
||||||
|
|
||||||
|
## [0.5.1] - 2021-08-01
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Improved log messages when `^C` is received with `^C` handler setted up
|
- Improved log messages when `^C` is received with `^C` handler set up
|
||||||
|
|
||||||
## [0.5.0] - 2021-07-08
|
## [0.5.0] - 2021-07-08
|
||||||
|
|
||||||
|
|
10
Cargo.toml
10
Cargo.toml
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "teloxide"
|
name = "teloxide"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "An elegant Telegram bots framework for Rust"
|
description = "An elegant Telegram bots framework for Rust"
|
||||||
repository = "https://github.com/teloxide/teloxide"
|
repository = "https://github.com/teloxide/teloxide"
|
||||||
|
@ -42,6 +42,8 @@ rustls = ["teloxide-core/rustls"]
|
||||||
auto-send = ["teloxide-core/auto_send"]
|
auto-send = ["teloxide-core/auto_send"]
|
||||||
throttle = ["teloxide-core/throttle"]
|
throttle = ["teloxide-core/throttle"]
|
||||||
cache-me = ["teloxide-core/cache_me"]
|
cache-me = ["teloxide-core/cache_me"]
|
||||||
|
trace-adaptor = ["teloxide-core/trace_adaptor"]
|
||||||
|
erased = ["teloxide-core/erased"]
|
||||||
|
|
||||||
# currently used for `README.md` tests, building docs for `docsrs` to add `This is supported on feature="..." only.`,
|
# currently used for `README.md` tests, building docs for `docsrs` to add `This is supported on feature="..." only.`,
|
||||||
# and for teloxide-core.
|
# and for teloxide-core.
|
||||||
|
@ -60,11 +62,13 @@ full = [
|
||||||
"rustls",
|
"rustls",
|
||||||
"auto-send",
|
"auto-send",
|
||||||
"throttle",
|
"throttle",
|
||||||
"cache-me"
|
"cache-me",
|
||||||
|
"trace-adaptor",
|
||||||
|
"erased",
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
teloxide-core = { version = "0.3.1", default-features = false }
|
teloxide-core = { version = "0.3.3", default-features = false }
|
||||||
#teloxide-core = { git = "https://github.com/teloxide/teloxide-core.git", rev = "...", default-features = false }
|
#teloxide-core = { git = "https://github.com/teloxide/teloxide-core.git", rev = "...", default-features = false }
|
||||||
teloxide-macros = { version = "0.4", optional = true }
|
teloxide-macros = { version = "0.4", optional = true }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue