chore(cargo): one target dir for all projects

Starting from cargo 0.3.0, one can override the target-directory
to be an absolute path, forcing all output to be dumped into
one and the same target dir.

That way, all dependencies are shared among the projects, saving
4 to 7 minutes per project in debug and release mode respectively.
This commit is contained in:
Sebastian Thiel
2015-06-21 13:26:10 +02:00
parent d0fb7a5ccc
commit 31f22b1535

2
.cargo/config Normal file
View File

@@ -0,0 +1,2 @@
[build]
target-dir = "target"