Clippy lints
Dependencies
- [2]
JFL253ZZActually include source files, whoops! - [3]
JBZGFYVOAdd nom parsers for main types - [4]
BOFUYB6IAdd documentation and implement some feedback from Discord (https://discord.com/channels/273534239310479360/354038657075904544/796256815024701480) - [5]
5II6T7YEAdd gemini library - [6]
LSYI2TXCHousekeeping, add RequestType
Change contents
- replacement in sputnik/src/main.rs at line 132
Ok(match header.status() {match header.status() { - replacement in sputnik/src/main.rs at line 171
})};Ok(()) - replacement in gemini/src/status.rs at line 195
[b1, b2] if &b'0' <= b1 && b1 <= &b'9' && &b'0' <= b2 && b2 <= &b'9' => {[b1, b2] if (&b'0'..=&b'9').contains(&b1) && &b'0' <= b2 && b2 <= &b'9' => { - replacement in gemini/src/response.rs at line 85
self.body.as_ref().map(Vec::as_slice)self.body.as_deref() - replacement in gemini/src/request.rs at line 139
if let None = self.url.port() {if self.url.port().is_none() {