🏗️ 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(cargo-make): example runner

Fuwn ba8e9afc e04fecfc

+13 -4
+13 -4
Makefile.toml
··· 14 14 toolchain = "nightly" 15 15 16 16 [tasks.checkf] 17 - script_runner = "@shell" 18 17 script = ''' 18 + #!@shell 19 + 19 20 cargo make fmt 20 21 cargo make check tokio 21 22 cargo make check async-std 22 23 ''' 23 24 24 25 [tasks.checkfc] 25 - script_runner = "@shell" 26 26 script = ''' 27 + #!@shell 28 + 27 29 cargo make fmt 28 30 cargo make check tokio 29 31 cargo make check async-std ··· 61 63 args = ["doc", "--open", "--no-deps"] 62 64 63 65 [tasks.example] 64 - command = "cargo" 65 - args = ["run", "--example", "${@}", "--all-features"] 66 + script = ''' 67 + #!@duckscript 68 + 69 + if is_empty ${2} 70 + exec cargo run --example ${1} --no-default-features --features logger,auto-deduce-mime,response-macros,tokio 71 + else 72 + exec cargo run --example ${1} --no-default-features --features logger,auto-deduce-mime,response-macros,${2} 73 + end 74 + '''