diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d42b5d4..b06d07d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `StatefulListener`. - Emit not only errors but also warnings and general information from teloxide, when set up by `enable_logging!`. - Use `i64` instead of `i32` for `user_id` in `html::user_mention` and `markdown::user_mention`. + - Updated to `teloxide-core` `v0.3.0` (see it's [changelog](https://github.com/teloxide/teloxide-core/blob/master/CHANGELOG.md#030---2021-07-05) for more) ### Fixed diff --git a/Cargo.toml b/Cargo.toml index dd93a201..a9a8e3af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,14 +63,14 @@ full = [ ] [dependencies] -#teloxide-core = { version = "0.2.1", default-features = false } -teloxide-core = { git = "https://github.com/teloxide/teloxide-core.git", rev = "897ba7c941b651cf6b7e614b7d373d14426ed1da", default-features = false } +teloxide-core = { version = "0.3.0", default-features = false } +#teloxide-core = { git = "https://github.com/teloxide/teloxide-core.git", rev = "...", default-features = false } teloxide-macros = { version = "0.4", optional = true } serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } -tokio = { version = "1.2", features = ["fs"] } +tokio = { version = "1.8", features = ["fs"] } tokio-util = "0.6" tokio-stream = "0.1" @@ -94,14 +94,14 @@ sqlx = { version = "0.5", optional = true, default-features = false, features = redis = { version = "0.20", features = ["tokio-comp"], optional = true } serde_cbor = { version = "0.11", optional = true } bincode = { version = "1.3", optional = true } -frunk = { version = "0.3", optional = true } +frunk = { version = "0.4", optional = true } [dev-dependencies] smart-default = "0.6.0" rand = "0.8.3" pretty_env_logger = "0.4.0" lazy_static = "1.4.0" -tokio = { version = "1.2.0", features = ["fs", "rt-multi-thread", "macros"] } +tokio = { version = "1.8", features = ["fs", "rt-multi-thread", "macros"] } [package.metadata.docs.rs] all-features = true