♻️ Simple & Efficient Gemini-to-HTTP Proxy fuwn.net
proxy gemini-protocol protocol gemini http rust
0
fork

Configure Feed

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

chore: Bump MSRV

Fuwn 80d356c7 3a22c2c7

+8 -4
+1 -1
Cargo.toml
··· 12 12 license = "GPL-3.0-only" 13 13 keywords = ["rust", "gemini", "proxy"] 14 14 categories = ["web-programming", "web-programming::http-server"] 15 - rust-version = "1.78.0" 15 + rust-version = "1.83.0" 16 16 17 17 # Slower builds, faster executables 18 18 [profile.release]
+7 -3
src/response/configuration.rs
··· 15 15 16 16 pub const fn is_no_css(&self) -> bool { self.is_no_css } 17 17 18 - pub fn set_proxy(&mut self, is_proxy: bool) { self.is_proxy = is_proxy; } 18 + pub const fn set_proxy(&mut self, is_proxy: bool) { 19 + self.is_proxy = is_proxy; 20 + } 19 21 20 - pub fn set_raw(&mut self, is_raw: bool) { self.is_raw = is_raw; } 22 + pub const fn set_raw(&mut self, is_raw: bool) { self.is_raw = is_raw; } 21 23 22 - pub fn set_no_css(&mut self, is_no_css: bool) { self.is_no_css = is_no_css; } 24 + pub const fn set_no_css(&mut self, is_no_css: bool) { 25 + self.is_no_css = is_no_css; 26 + } 23 27 }