Clippy fixes

This commit is contained in:
Abdulla Abdurakhmanov 2023-03-12 13:20:28 +01:00
parent 18ec1fc384
commit 2445eac022
No known key found for this signature in database
GPG key ID: FCDF08B0ECE6E69B
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ Cargo.toml dependencies example:
```toml
[dependencies]
slack-morphism = { version = "1.7", features = ["hyper", "axum"] }
slack-morphism = { version = "1.8", features = ["hyper", "axum"] }
```
All imports you need:

View file

@ -394,7 +394,7 @@ impl<H: 'static + Send + Sync + Clone + connect::Connect> SlackClientHttpConnect
let context_token = context.token;
async move {
let post_url_form = serde_urlencoded::to_string(&request_body)
let post_url_form = serde_urlencoded::to_string(request_body)
.map_err(|err| map_serde_urlencoded_error(err, None))?;
let response_body = self