diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-08-06 20:32:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-06 20:32:54 -0400 |
commit | 43d099c0275878f6c6358eb0e9a0094d076d7c29 (patch) | |
tree | f59b9dbdc3b9a4e9d5d69dc944bb0bd040de4282 | |
parent | 77d0d1e45ccfd33a8a98e2f5fa4ba618759b5dd3 (diff) |
Fix incremental 'cargo build' (#2740)
Tip: RUSTC_WRAPPER should be unset for incremental builds to work.
-rw-r--r-- | core/Cargo.toml | 8 |
1 files changed, 5 insertions, 3 deletions
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" |