Rust task runner and build tool.
The cargo-make task runner enables to define and configure sets of tasks and run them as a flow.
A task is a command or a script to execute.
Tasks can have dependencies which are also tasks that will be executed before the task itself.
With a simple toml based configuration file, you can define a multi platform build script that can run build, test, documentation generation, bench tests execution, security validations and more and executed by running a single command.
In order to install, just run the following command
sh
cargo install cargo-make
This will install cargo-make in your ~/.cargo/bin.
Make sure to add ~/.cargo/bin directory to your PATH variable.
When using cargo-make, all tasks are defined and configured via toml files.
Below are simple instructions to get you started off quickly.
In order to run a set of tasks, you first must define them in a toml file.
For example, if we would like to have a script which:
We will create a toml file as follows:
````toml [tasks.format] install_crate = "rustfmt" command = "cargo" args = ["fmt", "--", "--write-mode=overwrite"]
[tasks.clean] command = "cargo" args = ["clean"]
[tasks.build] command = "cargo" args = ["build"] dependencies = ["clean"]
[tasks.test] command = "cargo" args = ["test"] dependencies = ["clean"]
[tasks.my-flow] dependencies = [ "format", "build", "test" ] ````
We would execute the flow with the following command:
sh
cargo make --makefile simple-example.toml my-flow
The output would look something like this:
````console [cargo-make] info - Using Build File: simple-example.toml [cargo-make] info - Task: my-flow [cargo-make] info - Setting Up Env. [cargo-make] info - Running Task: format [cargo-make] info - Execute Command: "cargo" "fmt" "--" "--write-mode=overwrite" [cargo-make] info - Running Task: clean [cargo-make] info - Execute Command: "cargo" "clean" [cargo-make] info - Running Task: build [cargo-make] info - Execute Command: "cargo" "build" Compiling bitflags v0.9.1 Compiling unicode-width v0.1.4 Compiling quote v0.3.15 Compiling unicode-segmentation v1.1.0 Compiling strsim v0.6.0 Compiling libc v0.2.24 Compiling serde v1.0.8 Compiling vecmap v0.8.0 Compiling ansiterm v0.9.0 Compiling unicode-xid v0.0.4 Compiling synom v0.11.3 Compiling rand v0.3.15 Compiling termsize v0.3.0 Compiling atty v0.2.2 Compiling syn v0.11.11 Compiling textwrap v0.6.0 Compiling clap v2.25.0 Compiling serdederiveinternals v0.15.1 Compiling toml v0.4.2 Compiling serdederive v1.0.8 Compiling cargo-make v0.1.2 (file:///home/ubuntu/workspace) Finished dev [unoptimized + debuginfo] target(s) in 79.75 secs [cargo-make] info - Running Task: test [cargo-make] info - Execute Command: "cargo" "test" Compiling cargo-make v0.1.2 (file:///home/ubuntu/workspace) Finished dev [unoptimized + debuginfo] target(s) in 5.1 secs Running target/debug/deps/cargo_make-d5f8d30d73043ede
running 10 tests test log::tests::createinfo ... ok test log::tests::getlevelerror ... ok test log::tests::createverbose ... ok test log::tests::getlevelinfo ... ok test log::tests::getlevelother ... ok test log::tests::getlevelverbose ... ok test installer::tests::iscrateinstalledfalse ... ok test installer::tests::iscrateinstalledtrue ... ok test command::tests::validateexitcodeerror ... ok test log::tests::createerror ... ok
test result: ok. 10 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
[cargo-make] info - Running Task: my-flow [cargo-make] info - Build done in 72 seconds. ````
We now created a build script that can run on any platform.
In many cases, certain tasks depend on other tasks.
For example you would like to format the code before running build and run the build before running tests.
Such flow can be defined as follows:
````toml [tasks.format] install_crate = "rustfmt" command = "cargo" args = ["fmt", "--", "--write-mode=overwrite"]
[tasks.build] command = "cargo" args = ["build"] dependencies = ["format"]
[tasks.test] command = "cargo" args = ["test"] dependencies = ["build"] ````
When you run:
sh
cargo make --makefile ./my_build.toml test
It will try to run test, see that it has dependencies and those have other dependencies.
Therefore it will create an execution plan for the tasks based on the tasks and their dependencies.
In our case it will invoke format -> build -> test.
The same task will never be executed twice so if we have for example:
````toml [tasks.A] dependencies = ["B", "C"]
[tasks.B] dependencies = ["D"]
[tasks.C] dependencies = ["D"]
[tasks.D] script = [ "echo hello" ] ````
In this example, A depends on B and C, and both B and C are dependended on D.
Task D however will not be invoked twice.
The output of the execution will look something like this:
console
[cargo-make] info - Task: A
[cargo-make] info - Setting Up Env.
[cargo-make] info - Running Task: D
[cargo-make] info - Execute Command: "sh" "/tmp/cargo-make/CNuU47tIix.sh"
hello
[cargo-make] info - Running Task: B
[cargo-make] info - Running Task: C
[cargo-make] info - Running Task: A
As you can see, 'hello' was printed once by task D as it was only invoked once.
But what if we want to run D twice?
Simple answer would be to duplicate task D and have B depend on D and C depend on D2 which is a copy of D.
But duplicating can lead to bugs and to huge makefiles, so we have alias for that.
An alias task has its own name and points to another task.
All of the definitions of the alias task are ignored.
So now, if we want to have D execute twice we can do the following:
````toml [tasks.A] dependencies = ["B", "C"]
[tasks.B] dependencies = ["D"]
[tasks.C] dependencies = ["D2"]
[tasks.D] script = [ "echo hello" ]
[tasks.D2] alias="D" ````
Now C depends on D2 and D2 is an alias for D.
Execution output of such make file would like as follows:
console
[cargo-make] info - Task: A
[cargo-make] info - Setting Up Env.
[cargo-make] info - Running Task: D
[cargo-make] info - Execute Command: "sh" "/tmp/cargo-make/HP0UD7pgoX.sh"
hello
[cargo-make] info - Running Task: B
[cargo-make] info - Running Task: D2
[cargo-make] info - Execute Command: "sh" "/tmp/cargo-make/TuuZJkqCE2.sh"
hello
[cargo-make] info - Running Task: C
[cargo-make] info - Running Task: A
Now you can see that 'hello' was printed twice.
It is also possible to define platform specific aliases, for example:
````toml [tasks.mytask] linuxalias = "linuxmytask" windowsalias = "windowsmytask" macalias = "macmytask"
[tasks.linuxmytask]
[tasks.macmytask]
[tasks.windowsmytask] ````
If platform specific alias is found and matches current platform it will take precedence over the non platform alias definition.
For example:
````toml [tasks.mytask] linuxalias = "run" alias = "do_nothing"
[tasks.run] script = [ "echo hello" ]
[tasks.do_nothing] ````
If you run task mytask on windows or mac, it will invoke the donothing task.
However, if executed on a linux platform, it will invoke the run task.
The actual operation that a task invokes can be defined in 3 ways.
The below explains each one and lists them by priority:
Only one of the definitions will be used.
If multiple attributes are defined (for example both command and script), only the higher priority attribute is used.
There is no real need to define the tasks that were shown in the previous example.
cargo-make comes with a built in toml file that will serve as a base for every execution.
The optional external toml file that is provided while running cargo-make will only extend and add or overwrite
tasks that are defined in the default Makefile.toml.
Lets take the build task definition which comes already in the default toml:
toml
[tasks.build]
command = "cargo"
args = ["build"]
If for example, you would like to add verbose output to it, you would just need to change the args and add the --verbose as follows:
toml
[tasks.build]
args = ["build", "--verbose"]
If you want to disable some existing task (will not disable its dependencies), you can do it as follows:
toml
[tasks.build]
disabled = true
There is no need to redefine existing properties of the task, only what needs to be added or overwritten.
The default toml file comes with many steps and flows already built in, so it is worth to check it first.
You can also extend other external files from your external file by using the extend attribute, for example:
toml
extend = "my_common_makefile.toml"
The file path in the extend attribute is always relative to the current toml file you are in and not to the process working directory.
The extend attribute can be very usefull when you have a workspace with a Makefile.toml that contains all of the common custom tasks and in each project you can have a simple Makefile.toml which just has the extend attribute pointing to the workspace makefile.
In more complex scenarios, you may want multiple unrelated projects to share some common custom tasks, for example if you wish to notify some internal company server of the build status.
Instead of redefining those tasks in each project you can create a single toml file with those definitions and have all projects extend that file.
The extend however, only knows to find the extending files in the file system, so in order to pull some common toml from a remote server (using http or git clone and so on...), you can use the load scripts.
Load scripts are defined in the config section using the load_script attribute and are invoked before the extend attribute is evaluated.
This allows you to first pull the toml file from the remote server and put it in a location defined by the extend attribute.
Here is an example of a load script which downloads the common toml from a remote server using HTTP:
toml
[config]
load_script = ["wget -O /home/myuser/common.toml companyserver.com/common.toml"]
Here is an example of pulling the common toml file from some git repo:
toml
[config]
load_script = ["git clone git@mygitserver:user/project.git /home/myuser/common"]
You can run any command or set of commands you want, so you can build a more complex flow of how and where to fetch the toml file from and where to put it.
In some cases you want to run optional tasks as part of a bigger flow, but do not want to break your entire build in case of any error in those optional tasks.
For those tasks, you can add the force=true attribute.
toml
[tasks.unstable_task]
force = true
In case you want to override a task or specific attributes in a task for specific platforms, you can define an override task with the platform name (currently linux, windows and mac) under the specific task.
For example:
````toml [tasks.hello-world] script = [ "echo \"Hello World From Unknown\"" ]
[tasks.hello-world.linux] script = [ "echo \"Hello World From Linux\"" ] ````
If you run cargo make with task 'hello-world' on linux, it would redirect to hello-world.linux while on other platforms it will execute the original hello-world.
In linux the output would be:
console
[cargo-make] info - Task: hello-world
[cargo-make] info - Setting Up Env.
[cargo-make] info - Running Task: hello-world
[cargo-make] info - Execute Command: "sh" "/tmp/cargo-make/kOUJfw8Vfc.sh"
Hello World From Linux
[cargo-make] info - Build done in 0 seconds.
While on other platforms
console
[cargo-make] info - Task: hello-world
[cargo-make] info - Setting Up Env.
[cargo-make] info - Running Task: hello-world
[cargo-make] info - Execute Command: "sh" "/tmp/cargo-make/2gYnulOJLP.sh"
Hello World From Unknown
[cargo-make] info - Build done in 0 seconds.
In the override task you can define any attribute that will override the attribute of the parent task, while undefined attributes will use the value from the parent task and will not be modified.
In case you need to delete attributes from the parent (for example script is only invoked if command is not defined and you have command defined in the parent task and script in the override task), then you will
have to clear the parent task in the override task using the clear attribute as follows:
toml
[tasks.hello-world.linux]
clear = true
script = [
"echo \"Hello World From Linux\""
]
This means, however, that you will have to redefine all attributes in the override task that you want to carry with you from the parent task.
Important - alias comes before checking override task so if parent task has an alias it will be redirected to that task instead of the override.
To override per platform, use the linuxalias, windowsalias, mac_alias attributes.
In addition, aliases can not be defined in platform override tasks, only in parent tasks.
cargo-make enables you to defined environment variables in several ways.
You can define env vars to be set as part of the execution of the flow in the global env block for your makefile, for example:
yaml
[env]
RUST_BACKTRACE = "1"
All env vars defined in the env block and in the default Makefile.toml will be set before running the tasks.
Environment variables can be defined inside tasks using the env attribute, so when a task is invoked (after its dependencies), the environment variables will be set, for example:
````yaml [tasks.test-flow] env = { "SOMEENVVAR" = "value" } run_task = "actual-task"
[tasks.actual-task] condition = { envset = [ "SOMEENVVAR" ] } script = [ "echo var: ${SOMEENV_VAR}" ] ````
Environment variables can be defined in the command line using the --env/-e argument as follows:
console
cargo make --env ENV1=VALUE1 --env ENV2=VALUE2 -e ENV3=VALUE3
In addition to manually setting environment variables, cargo-make will also automatically add few environment variables on its own which can be helpful when running task scripts, commands, conditions, etc:
The following environment variables will be set by cargo-make if Cargo.toml file exists and the relevant value is defined:
The following environment variables will be set by cargo-make if the project is part of a git repo:
Conditions allow you to evaluate at runtime if to run a specific task or not.
These conditions are evaluated before the task is running its installation and/or commands and if the condition is not fulfilled, the task will not be invoked.
The task dependencies however are not affected by parent task condition outcome.
There are two types of conditions:
The task runner will evaluate any condition defined and a task definition may contain both types at the same time.
The condition attribute may define multiple parameters to validate.
All defined parameters must be valid for the condition as a whole to be true and enable the task to run.
Below is an example of a condition script that checks that we are running on windows or linux (but not mac) and that we are running on beta or nightly (but not stable):
toml
[tasks.test-condition]
condition = { platforms = ["windows", "linux"], channels = ["beta", "nightly"] }
script = [
"echo \"condition was met\""
]
The following condition types are available:
Few examples:
toml
[tasks.test-condition]
condition = { platforms = ["windows", "linux"], channels = ["beta", "nightly"], env_set = [ "KCOV_VERSION" ], env_not_set = [ "CARGO_MAKE_SKIP_CODECOV" ], env = { "TRAVIS" = "true", "CARGO_MAKE_RUN_CODECOV" = "true", } }
These script are invoked before the task is running its installation and/or commands and if the exit code of the condition script is non zero, the task will not be invoked.
Below is an example of a condition script that always returns a non zero value, in which case the command is never executed:
toml
[tasks.never]
condition_script = [
"exit 1"
]
command = "cargo"
args = ["build"]
Condition scripts can be used to ensure that the task is only invoked if a specific condition is met, for example if a specific environment variable is defined.
Conditions and runtask combined can enable you to define a conditional sub flow.
For example, if you have a coverage flow that should only be invoked in a travis build, and only if the CARGOMAKERUNCODECOV environment variable is defined as "true":
````toml [tasks.ci-coverage-flow] windowsalias = "empty" conditionscript = [ ''' if [ "$TRAVIS" = "true" ]; then if [ "$CARGOMAKERUN_CODECOV" = "true" ]; then exit 0 fi fi
exit 1 ''' ] run_task = "codecov-flow"
[tasks.codecov-flow] description = "Runs the full coverage flow and uploads the results to codecov." windows_alias = "empty" dependencies = [ "coverage-flow", "codecov" ] ````
The first task ci-coverage-flow defines the conditionscript that checks we are in travis and the CARGOMAKERUNCODECOV environment variable.
Only if both are defined, it will run the codecov-flow task.
We can't define the condition directly on the codecov-flow task, as it will invoke the task dependencies before checking the condition.
cargo-make comes with a predefined flow for continuous integration build executed by internal or online services such as travis-ci and appveyor.
It is recommanded to install cargo-make with the debug flag for faster installation.
Add the following to .travis.yml file:
yaml
script:
- cargo install --debug cargo-make
- cargo make ci-flow
If you want to run code coverage and upload it to codecov, also define the following environment variable:
yaml
env:
global:
- CARGO_MAKE_RUN_CODECOV="true"
You can see full yaml file at: .travis.yml
When working with workspaces, in order to run the ci-flow for each member and package all coverage data, use the following command:
yaml
script:
- cargo install --debug cargo-make
- cargo make workspace-ci-flow --no-workspace
For faster cargo-make installation as part of the build, you can also pull the binary version of cargo-make directly and invoke it without running cargo install which should reduce your build time, as follows
yml
script:
- wget -O ~/.cargo/bin/cargo-make https://bintray.com/sagiegurari/cargo-make/download_file?file_path=cargo-make_v0.3.58
- chmod 777 ~/.cargo/bin/cargo-make
- cargo-make make ci-flow
The specific version of cargo-make requested is defined in the suffix of the cargo-make file name in the form of: cargo-make_v[VERSION], for example
sh
https://bintray.com/sagiegurari/cargo-make/download_file?file_path=cargo-make_v0.3.58
In order to pull the latest prebuild cargo-make binary, use the following example:
````yml env: global: - CARGOMAKEURL="https://bintray.com/sagiegurari/cargo-make/downloadfile?filepath=cargo-make_v"
beforeinstall: - curl -SsL $CARGOMAKE_URL$(cargo search cargo-make | grep cargo-make | cut -d\" -f2) > ~/.cargo/bin/cargo-make - chmod 777 ~/.cargo/bin/cargo-make - cargo-make make ci-flow ````
Add the following to appveyor.yml file:
````yaml build: false
test_script: - cargo install --debug cargo-make - cargo make ci-flow ````
You can see full yaml file at: appveyor.yml
When working with workspaces, in order to run the ci-flow for each member and package all coverage data, use the following command:
````yaml build: false
test_script: - cargo install --debug cargo-make - cargo make workspace-ci-flow --no-workspace ````
The default Makefile.toml file comes with many predefined tasks and flows.
The following are some of the main flows that can be used without any need of an external Makefile.toml definition.
cargo make
).cargo-make has built in support for multiple coverage tasks.
Switching between them without modifying the flows is done by changing the main coverage task alias.
Currently the main coverage task is defined as follows:
toml
[tasks.coverage]
alias = "coverage-kcov"
To switch to another provider simply change the alias to that specific task name, for example if we would like to use the already defined tarpaulin provider:
toml
[tasks.coverage]
alias = "coverage-tarpaulin"
You can run:
sh
cargo make --list-all-steps | grep "coverage-"
To view all currently supported providers. Example output:
console
ci-coverage-flow: No Description.
coverage-tarpaulin: Runs coverage using tarpaulin rust crate (linux only)
coverage-flow: Runs the full coverage flow.
coverage-kcov: Installs (if missing) and runs coverage using kcov (not supported on windows)
All built in coverage providers are supported by their authors and not by cargo-make.
In case cargo-make detects that the current working directory is a workspace crate (crate with Cargo.toml which defines a workspace and its members), it will not invoke the requested tasks in that directory.
Instead, it will generate a task definition in runtime which will go to each member directory and invoke the requested task on that member.
For example if we have the following directory structure:
console
workspace
├── Cargo.toml
├── member1
│ └── Cargo.toml
└── member2
└── Cargo.toml
And we ran cargo make mytask
, it will go to each workspace member directory and execute: cargo make mytask
at that directory,
where mytask is the original task that was requested on the workspace level.
The order of the members is defined by the member attribute in the workspace Cargo.toml.
We can use this capability to run same functionality on all workspace member crates, for example if we want to format all crates, we can run in the workspace directory: cargo make format
.
In case you wish to run the tasks on the workspace level and not on the members, use the --no-workspace
cli flag when running cargo make, for example:
sh
cargo make --no-workspace mytask
You can define a composite flow that runs both workspace level tasks and member level tasks using this flag.
This is an example of a workspace level Makefile.toml which enables to run such a flow:
````toml [tasks.composite] dependencies = ["memberflow", "workspaceflow"]
[tasks.memberflow] command = "cargo" args = ["make", "membertask"]
[tasks.workspace_flow]
````
You can start this composite flow as follows:
sh
cargo make --no-workspace composite
Every task or flow that is executed by the cargo-make has additional 2 tasks.
An init task that gets invoked at the start of all flows and end task that is invoked at the end of all flows.
The names of the init and end tasks are defined in the config section in the toml file, the below shows the default settings:
````toml [config] inittask = "init" endtask = "end"
[tasks.init]
[tasks.end] ````
By default the init and end tasks are empty and can be modified by external toml files or you can simply change the names of the init and end tasks in the external toml files to point to different tasks.
These tasks allow common actions to be invoked no matter what flow you are running.
Important to mention that init and end tasks invocation is different than other tasks.
Therefore it is not recommanded to use the init/end tasks also inside your flows.
These are the following options available while running cargo-make:
````console USAGE: cargo make [FLAGS] [OPTIONS] [TASK]
FLAGS: --experimental Allows access unsupported experimental predefined tasks. -h, --help Prints help information --list-all-steps Lists all known steps --no-workspace Disable workspace support (tasks are triggered on workspace and not on members) --print-steps Only prints the steps of the build in the order they will be invoked but without invoking them -v, --verbose Sets the log level to verbose (shorthand for --loglevel verbose) -V, --version Prints version information
OPTIONS:
--cwd
ARGS:
````rust
pub struct ConfigSection {
/// Init task name which will be invoked at the start of every run
pub inittask: Option
/// Holds the entire externally read configuration such as task definitions and env vars where all values are optional
pub struct ExternalConfig {
/// Path to another toml file to extend
pub extend: Option
/// Holds a single task configuration such as command and dependencies list
pub struct Task {
/// Task description
pub description: Option
/// Holds a single task configuration for a specific platform as an override of another task
pub struct PlatformOverrideTask {
/// if true, it should ignore all data in base task
pub clear: Option
/// Holds condition attributes
pub struct TaskCondition {
/// Platform names (linux, windows, mac)
pub platforms: Option
More info can be found in the types section of the API documentation.
This section explains the logic behind the default task names.
While the default names logic can be used as a convention for any new task defined in some project Makefile.toml, it is not required.
The default Makefile.toml file comes with three types of tasks:
cargo build
)Single command tasks are named based on their commmand (in most cases), for example the task that runs cargo build is named build.
toml
[tasks.build]
command = "cargo"
args = ["build"]
This allows to easily understand what this task does.
Tasks that are invoked before/after those tasks are named the same way as the original task but with the pre/post prefix.
For example for task build the default toml also defines pre-build and post-build tasks.
````toml [tasks.pre-build]
[tasks.post-build] ````
In the default Makefile.toml, all pre/post tasks are empty and are there as placeholders for external Makefile.toml to override so custom functionality can be defined easily before/after running a specfific task.
Flows are named with the flow suffix, for example: ci-flow
````toml [tasks.ci-flow]
dependencies = [ "pre-build", "build-verbose", "post-build", "pre-test", "test-verbose", "post-test" ] ````
This prevents flow task names to conflict with single command task names and quickly allow users to understand that this task is a flow definition.
If you are using cargo-make in your project and want to display it in your project README or website, you can embed the "Built with cargo-make" badge.
Here are few snapshots:
md
[](https://sagiegurari.github.io/cargo-make)
html
<a href="https://sagiegurari.github.io/cargo-make">
<img src="https://sagiegurari.github.io/cargo-make/assets/badges/cargo-make.svg" alt="Built with cargo-make">
</a>
The cargo-make task runner is still under heavy development.
You can view the future development items list in the project board
| Date | Version | Description | | ----------- | ------- | ----------- | | 2017-08-19 | v0.3.58 | Added loadscript capability | | 2017-08-18 | v0.3.56 | Set environment variables during task invocation | | 2017-08-09 | v0.3.53 | Added new condition types: env, envset and envnotset | | 2017-08-09 | v0.3.51 | Added experimental cli arg to enable access unsupported experimental predefined tasks | | 2017-08-08 | v0.3.49 | Added condition attribute | | 2017-08-06 | v0.3.46 | Added bintray upload task | | 2017-08-02 | v0.3.43 | Added --env/-e cli args to set environment variables via command line | | 2017-08-01 | v0.3.41 | Added github-publish task | | 2017-07-28 | v0.3.38 | Added runscript which allows executing sub tasks | | 2017-07-25 | v0.3.37 | Added condition script capability for tasks | | 2017-07-22 | v0.3.36 | Added coverage-lcov task (not fully tested) | | 2017-07-21 | v0.3.34 | Added coverage-tarpaulin task | | 2017-07-21 | v0.3.33 | Added more environment variables for workspace support | | 2017-07-20 | v0.3.32 | Added --list-all-steps cli option | | 2017-07-17 | v0.3.28 | workspace level ci flow | | 2017-07-16 | v0.3.27 | cargo make ci-flow on travis now automatically runs code coverage and uploads to codecov | | 2017-07-16 | v0.3.25 | New --no-workspace cli arg | | 2017-07-15 | v0.3.24 | Workspace support | | 2017-07-14 | v0.3.23 | Added codecov task in default toml | | 2017-07-14 | v0.3.20 | Added coverage task in default toml | | 2017-07-14 | v0.3.16 | Added more environment variables based on target environment and rust compiler | | 2017-07-13 | v0.3.15 | Added common init and end tasks | | 2017-07-10 | v0.3.13 | cargo-make now defines rust version env vars | | 2017-07-09 | v0.3.11 | cargo-make now defines env vars based on project git repo information | | 2017-07-06 | v0.3.10 | cargo-make now defines env vars based on project Cargo.toml | | 2017-07-05 | v0.3.6 | Added --cwd cli arg to enable setting working directory | | 2017-07-04 | v0.3.5 | Added clippy task | | 2017-07-03 | v0.3.4 | Added --print-steps cli arg | | 2017-07-02 | v0.3.1 | Added CARGOMAKE_TASK env var holding the main task name | | 2017-07-02 | v0.3.0 | Renamed few cli options | | 2017-07-02 | v0.2.20 | Added -v and --verbose cli arg | | 2017-07-01 | v0.2.19 | Added extend config level attribute | | 2017-06-30 | v0.2.17 | Added force task attribute | | 2017-06-28 | v0.2.12 | Published website | | 2017-06-28 | v0.2.8 | Platform specific task override | | 2017-06-26 | v0.2.7 | Platform specific alias | | 2017-06-26 | v0.2.6 | Enable task attributes override | | 2017-06-25 | v0.2.3 | Added disabled task attribute support | | 2017-06-24 | v0.2.0 | Internal fixes (renamed dependencies attribute) | | 2017-06-24 | v0.1.2 | Print build time, added internal docs, unit tests and coverage | | 2017-06-24 | v0.1.1 | Added support for env vars, task alias and crate installation | | 2017-06-23 | v0.1.0 | Initial release. |
Developed by Sagie Gur-Ari and licensed under the Apache 2 open source license.