🦠 The Definitive Gemini Protocol Toolkit
gemini gemini-protocol gemtext parser zero-dependency toolkit ast converter html markdown cli networking
0
fork

Configure Feed

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

fix(meta): use generic lifetime for initialiser

fuwn.net b1be3252 57dfd0bc

verified
+1 -1
+1 -1
src/meta.rs
··· 82 82 /// ); 83 83 /// ``` 84 84 #[must_use] 85 - pub fn from_string(meta: impl Into<std::borrow::Cow<'static, str>>) -> Self { 85 + pub fn from_string<'a>(meta: impl Into<std::borrow::Cow<'a, str>>) -> Self { 86 86 let meta = meta.into().to_string(); 87 87 let mut metas = meta.split(';'); 88 88 let mime = metas.next().unwrap_or("").to_string();