You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
Telegram bot API client for Rust.
6
6
7
-
It's a complete wrapper for Telegram bot API, and it's up-to-date with version 9.4 of the API.
7
+
It's a complete wrapper for Telegram bot API, and it's up-to-date with version 9.5 of the API.
8
8
9
9
Frankenstein's data structures (Rust structs and enums) are mapped one-to-one from Telegram bot API types and method parameters.
10
10
@@ -14,7 +14,7 @@ Run `cargo add frankenstein` or add the following to your `Cargo.toml`.
14
14
15
15
```toml
16
16
[dependencies]
17
-
frankenstein = { version = "0.47", features = [] }
17
+
frankenstein = { version = "0.48", features = [] }
18
18
```
19
19
20
20
You likely want to use either a blocking or an async client. Enable it via the [Features](#features).
@@ -33,7 +33,7 @@ Without enabling any additional features this crate will only ship with Telegram
33
33
For example for the async client add the following line to your `Cargo.toml` file:
34
34
35
35
```toml
36
-
frankenstein = { version = "0.47", features = ["client-reqwest"] }
36
+
frankenstein = { version = "0.48", features = ["client-reqwest"] }
37
37
```
38
38
39
39
## Usage
@@ -136,7 +136,7 @@ It has two variants:
136
136
137
137
### Documentation
138
138
139
-
Frankenstein implements all Telegram bot API methods. To see which parameters you should pass, check the [official Telegram Bot API documentation](https://core.telegram.org/bots/api#available-methods) or [docs.rs/frankenstein](https://docs.rs/frankenstein/0.47.0/frankenstein/trait.TelegramApi.html#provided-methods)
139
+
Frankenstein implements all Telegram bot API methods. To see which parameters you should pass, check the [official Telegram Bot API documentation](https://core.telegram.org/bots/api#available-methods) or [docs.rs/frankenstein](https://docs.rs/frankenstein/0.48.0/frankenstein/trait.TelegramApi.html#provided-methods)
140
140
141
141
You can check out real-world bots created using this library:
0 commit comments