From 709fe18aded179ec1df82cbcc519ea5bbba397a9 Mon Sep 17 00:00:00 2001 From: Temirkhan Myrzamadi Date: Mon, 27 Jul 2020 02:42:08 +0600 Subject: [PATCH] Use teloxide-macros v0.3.2 --- Cargo.toml | 3 +-- examples/dialogue_bot/Cargo.toml | 2 +- examples/redis_remember_bot/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 72ba0444..c64ae2d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,8 +55,7 @@ serde_cbor = { version = "0.11.1", optional = true } bincode = { version = "1.3.1", optional = true } frunk = { git = "https://github.com/Hirrolot/frunk", branch = "append-to-hlist", optional = true } -#teloxide-macros = "0.3.1" -teloxide-macros = { git = "http://github.com/teloxide/teloxide-macros", branch = "master" } +teloxide-macros = "0.3.2" [dev-dependencies] smart-default = "0.6.0" diff --git a/examples/dialogue_bot/Cargo.toml b/examples/dialogue_bot/Cargo.toml index d032ff95..e9807cb1 100644 --- a/examples/dialogue_bot/Cargo.toml +++ b/examples/dialogue_bot/Cargo.toml @@ -17,7 +17,7 @@ pretty_env_logger = "0.4.0" futures = "0.3.5" derive_more = "0.99.9" teloxide = { path = "../../", features = ["frunk"] } -teloxide-macros = { git = "http://github.com/teloxide/teloxide-macros", branch = "master" } +teloxide-macros = "0.3.2" [profile.release] lto = true diff --git a/examples/redis_remember_bot/Cargo.toml b/examples/redis_remember_bot/Cargo.toml index a5ad6b25..bbd49ee4 100644 --- a/examples/redis_remember_bot/Cargo.toml +++ b/examples/redis_remember_bot/Cargo.toml @@ -9,7 +9,7 @@ tokio = "0.2.9" # You can also choose "cbor-serializer" or built-in JSON serializer teloxide = { path = "../../", features = ["redis-storage", "bincode-serializer"] } -teloxide-macros = { git = "http://github.com/teloxide/teloxide-macros", branch = "master" } +teloxide-macros = "0.3.2" serde = "1.0.104" futures = "0.3.5"