fix: changed rust edition to 2021

This commit is contained in:
TotallyNot 2025-04-27 13:47:22 +02:00
parent b069c7e493
commit 26043ac318
Signed by: pyrite
GPG key ID: 7F1BA9170CD35D15
4 changed files with 10 additions and 8 deletions

View file

@ -1,4 +1,6 @@
use http::{HeaderMap, HeaderValue, header::AUTHORIZATION};
use std::future::Future;
use http::{header::AUTHORIZATION, HeaderMap, HeaderValue};
use serde::Deserialize;
use crate::{
@ -138,7 +140,7 @@ impl Executor for ReqwestClient {
#[cfg(test)]
mod test {
use crate::{ApiError, Error, scopes::test::test_client};
use crate::{scopes::test::test_client, ApiError, Error};
use super::*;