From 43d099c0275878f6c6358eb0e9a0094d076d7c29 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 6 Aug 2019 20:32:54 -0400 Subject: Fix incremental 'cargo build' (#2740) Tip: RUSTC_WRAPPER should be unset for incremental builds to work. --- core/Cargo.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'core') diff --git a/core/Cargo.toml b/core/Cargo.toml index d659c943d..bfb02c3da 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -13,9 +13,11 @@ repository = "https://github.com/denoland/deno" [lib] path = "lib.rs" -[[bin]] -name = "snapshot_creator" -path = "snapshot_creator.rs" +# NOTE: The ninja build of snapshot_creator gets clobbered by 'cargo build' if +# the following is added. This breaks incremental 'cargo build'. +# [[bin]] +# name = "snapshot_creator" +# path = "snapshot_creator.rs" [dependencies] futures = "0.1.28" -- cgit v1.2.3