mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-03 09:49:07 +01:00
update teloxide_macros dependency + update examples and tests using BotDialogue
derive macro
This commit is contained in:
parent
d6e439b0cf
commit
ca1c1f3e33
3 changed files with 4 additions and 6 deletions
|
@ -74,7 +74,7 @@ full = [
|
|||
teloxide-core = { version = "0.3.3", 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 = { path = "../teloxide-macros", optional = true }
|
||||
teloxide-macros = { git = "https://github.com/teloxide/teloxide-macros", branch = "dispatching2", optional = true }
|
||||
serde_json = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ type Store = SqliteStorage<Json>;
|
|||
type BotDialogue = Dialogue<State, Store>;
|
||||
|
||||
#[derive(DialogueState, Clone, serde::Serialize, serde::Deserialize)]
|
||||
#[out(anyhow::Result<()>)]
|
||||
#[handler_out(anyhow::Result<()>)]
|
||||
pub enum State {
|
||||
#[handler(handle_start)]
|
||||
Start,
|
||||
|
|
|
@ -8,8 +8,7 @@ use teloxide::macros::DialogueState;
|
|||
fn compile_test() {
|
||||
#[allow(dead_code)]
|
||||
#[derive(DialogueState, Clone)]
|
||||
#[out(Result<(), teloxide::RequestError>)]
|
||||
#[store(teloxide::dispatching2::dialogue::InMemStorage<State>)]
|
||||
#[handler_out(Result<(), teloxide::RequestError>)]
|
||||
enum State {
|
||||
#[handler(handle_start)]
|
||||
Start,
|
||||
|
@ -38,8 +37,7 @@ fn compile_test() {
|
|||
fn compile_test_generics() {
|
||||
#[allow(dead_code)]
|
||||
#[derive(DialogueState, Clone)]
|
||||
#[out(Result<(), teloxide::RequestError>)]
|
||||
#[store(teloxide::dispatching2::dialogue::InMemStorage<State<X>>)]
|
||||
#[handler_out(Result<(), teloxide::RequestError>)]
|
||||
enum State<X: Clone + Send + Sync + 'static> {
|
||||
#[handler(handle_start)]
|
||||
Start,
|
||||
|
|
Loading…
Reference in a new issue