diff --git a/src/api.rs b/src/api.rs index 446128b..eea2d3e 100644 --- a/src/api.rs +++ b/src/api.rs @@ -18,8 +18,6 @@ use { std::sync::Arc, }; -type Res = std::result::Result; -type Result = std::result::Result>; type DBPool = Arc>; diff --git a/src/api/v0.rs b/src/api/v0.rs index 89b965e..8a9255b 100644 --- a/src/api/v0.rs +++ b/src/api/v0.rs @@ -13,13 +13,11 @@ use { bb8::Pool, std::sync::Arc, crate::{ - funcs::type_of, double_split, }, }; type Res = std::result::Result; -type Result = std::result::Result>; type DBPool = Arc>; @@ -32,7 +30,7 @@ pub async fn api(req: Request, pool: DBPool) -> Json { } } -async fn auth(req: Request, pool: DBPool) -> Json { +async fn auth(req: Request, _pool: DBPool) -> Json { let query = req.uri().query().or(Some("")).unwrap(); let query = double_split(query.to_string(), "&", "="); let sess = std::string::String::from(query @@ -48,7 +46,7 @@ async fn auth(req: Request, pool: DBPool) -> Json { } } -async fn auth_get(req: Request, pool: DBPool) -> Json { +async fn auth_get(req: Request, _pool: DBPool) -> Json { let query = req.uri().query().or(Some("")).unwrap(); let query = double_split(query.to_string(), "&", "="); println!("{:?}", query); diff --git a/src/funcs.rs b/src/funcs.rs index a2694cc..c3c985e 100644 --- a/src/funcs.rs +++ b/src/funcs.rs @@ -15,6 +15,7 @@ use { }; +#[allow(dead_code)] pub fn type_of(_: T) -> &'static str { type_name::() } diff --git a/src/main.rs b/src/main.rs index 3dfde0c..29de965 100644 --- a/src/main.rs +++ b/src/main.rs @@ -252,11 +252,11 @@ async fn uri_login(req: Request, pool: DBPool, headers: &mut HeaderMap Ok((build_html(LOGIN_HTML), StatusCode::OK, restype)) } -async fn uri_authorize(req: Request, pool: DBPool) -> Result<(String, StatusCode, HeaderValue)> { +async fn uri_authorize(req: Request, _pool: DBPool) -> Result<(String, StatusCode, HeaderValue)> { if *req.method() == Method::POST { let body = get_body_from_request(req).await?; let body = String::from_utf8(body).unwrap(); - let body = double_split(body, "&", "="); + let _body = double_split(body, "&", "="); } let restype: HeaderValue = "text/html".parse().unwrap();