telers 1.0.0-beta.2

An asynchronous framework for Telegram Bot API written in Rust
Documentation
1
2
3
4
5
6
7
8
9
//! This module contains the default serializers implementations for serializing the request body.
//!
//! `reqwest` serializer is enabled by default, if you want to use your own serializer, you can
//! do it for custom client and implement [`Session`] trait for it.
//! You can check example of using custom client in bot in `examples/bot_http_client`.
//!
//! [`Session`]: telers::client::Session

pub(crate) mod reqwest;