Skip to content

Commit

Permalink
update version in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ayrat555 committed Jul 14, 2024
1 parent 523393d commit fbd77f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ frankenstein = "0.32"
To use the async client add the following line to your `Cargo.toml` file:

```toml
frankenstein = { version = "0.30", default-features = false, features = ["async-http-client"] }
frankenstein = { version = "0.32", default-features = false, features = ["async-http-client"] }
```

You can also disable all features. In this case the crate will ship only with Telegram types.

```toml
frankenstein = { version = "0.30", default-features = false }
frankenstein = { version = "0.32", default-features = false }
```

## Usage
Expand Down Expand Up @@ -204,7 +204,7 @@ The library uses `ureq` HTTP client by default, but it can be easily replaced wi
`ureq` comes with a default feature (`impl`). So the feature should be disabled.

```toml
frankenstein = { version = "0.30", default-features = false, features = ["telegram-trait"] }
frankenstein = { version = "0.32", default-features = false, features = ["telegram-trait"] }
```

Then implement the `TelegramApi` trait for your HTTP client which requires two functions:
Expand Down

0 comments on commit fbd77f4

Please sign in to comment.