cargo-make 0.37.24

Rust task runner and build tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[tasks.php]
script_runner = "php"
script_extension = "php"
script = '''
<?php
echo "Hello, World!\n";
'''

[tasks.php-with-args]
script_runner = "php"
script_runner_args = ["-f"]
script_extension = "php"
script = '''
<?php
echo "Hello, World!\n";
'''