Replies: 1 comment 4 replies
-
You probably don't really want that, at least not for normal dev work. During normal dev work cargo's ability to do incremental dependency builds etc. is actually somewhat useful, while Nix can only work on the granularity of whole derivations. My general advice: in dev shell let Nix provide dev with all the tooling that is needed, and not involve |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to make the
cargo
provided by the devShell aware of the dependencies that are already built?Ideally I would like
cargo build
in my devShell to only build my crate, and reuse the artifacts fromcraneLib.buildDepsOnly
.Beta Was this translation helpful? Give feedback.
All reactions