♻️ 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(just): Use base Cargo Justfile from Fuwn/justfiles

fuwn.net 48a8799d 3e5acda9

verified
+6 -17
+2
.gitignore
··· 22 22 # macOS 23 23 .DS_Store 24 24 25 + # Fuwn/justfiles 26 + *.just
+4 -17
justfile
··· 1 + import? 'cargo.just' 2 + 1 3 default: 2 4 @just --list 3 5 4 - fmt: 5 - cargo fmt 6 - 7 - check: 8 - cargo check --all-features 9 - 10 - checkf: 11 - @just fmt 12 - @just check 13 - 14 - checkfc: 15 - @just checkf 16 - cargo clippy 17 - 18 - run: 19 - @just checkfc 20 - cargo run 6 + fetch: 7 + curl https://raw.githubusercontent.com/Fuwn/justfiles/refs/heads/main/cargo.just > cargo.just