From dc367c34751e04036e56a4d984d6b7f8f92cef4d Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 17 Jul 2016 13:35:57 +0200 Subject: [PATCH] fix(cargo): relative path for custom target dir Using a shared target-dir is important to keep disk-space usage in check and speed up builds. --- .cargo/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config b/.cargo/config index a6b014e959..87821012fa 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,2 +1,2 @@ [build] -target-dir = "target" +target-dir = "./target"