telebot icon indicating copy to clipboard operation
telebot copied to clipboard

Write Telegram bots in Rust with Tokio and Futures

Results 10 telebot issues
Sort by recently updated
recently updated
newest added

Can telebot work with more complex commands like `/edit356` where 356 is variable part? In the old telebot version i was able to do this via [custom processing](https://github.com/berkus/AeglBot/blob/rust/src/lib.rs#L163-L171) for [commands](https://github.com/berkus/AeglBot/blob/rust/src/lib.rs#L274-L344).

It would be nice to upgrade used tokio runtime to 0.2. Currently it is impossible to seamlessly run async code with e.g. latest versions of: ``` reqwest = "0.10.6" redis...

The following dependencies are heavily outdated and not compatible with the latest versions: - hyper-multipart - uuid - syn - quote

I've noticed bot stops working but doesn't crash nor shows any error when the host computer goes to sleep state and gets turned on again, it is like as if...

Futures 0.2 made some breaking changes so the examples here won't compile. It would be awesome for supporting futures 0.2.

Hi, I was playing around with this library, mainly to test the [Telegram login widget][1]. According to [this documentation][2], the login workflow is as follows: - The website owner creates...

Support playing games with a Telegram bot. In order to do this, you need to * Add missing objects/functions to objects.rs/functions.rs * Include some nice wrapper to create a game...

It would be very nice if telebot had support of [webhooks](https://core.telegram.org/bots/api#setwebhook). If you're writing telegram bot on Rust than you probably expect extreamly high performance and "pull" method is something...