mirror of
https://github.com/System-End/slack-morphism-rust.git
synced 2026-04-19 22:05:15 +00:00
Clippy fixes
This commit is contained in:
parent
18ec1fc384
commit
2445eac022
2 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue