🏗️ Elegant & Highly Performant Async Gemini Server Framework for the Modern Age
async framework gemini-protocol protocol gemini rust
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(clippy): lints

Fuwn b7cb37ce 6152ee66

+2 -2
+1 -1
src/router.rs
··· 421 421 } 422 422 423 423 for (i, partial_footer) in { 424 - #[allow(clippy::needless_borrow)] 424 + #[allow(clippy::needless_borrow, clippy::explicit_auto_deref)] 425 425 (&mut *self.footers.lock().unwrap()).iter_mut().enumerate() 426 426 } { 427 427 footer.push_str(&format!(
+1 -1
src/utilities.rs
··· 24 24 pub fn queries_from_url(url: &url::Url) -> HashMap<String, String> { 25 25 let mut queries = HashMap::new(); 26 26 27 - for (key, value) in url.query_pairs().collect::<Vec<(_, _)>>() { 27 + for (key, value) in url.query_pairs() { 28 28 queries.insert(key.to_string(), value.to_string()); 29 29 } 30 30