Ivan Petkov
Ivan Petkov
Overriding `craneUtils` will become possible once https://github.com/ipetkov/crane/pull/652 lands!
Hi @Jisu-Woniu we already [have a `From` impl to convert `std::process::Command` to `tokio::process::Command`](https://docs.rs/tokio/latest/tokio/process/struct.Command.html#impl-From%3CCommand%3E-for-Command) which should do what you are asking for! For example: ```rust let mut cmd = std::process::Command::new("echo"); cmd.args(["hello",...
My initial thought was that exposing `as_std_mut()` could allow the caller to make changes to the underlying `Command` without our version knowing. I thought we used to have logic whenever...
Did some digging in the `magic-nix-cache` sources, looks like any new store paths get uploaded which does not take into account whether the upstream cache(s) also include it https://github.com/DeterminateSystems/magic-nix-cache/blob/a2eb0c6759c08aa7b288708effccf9047a1bb525/magic-nix-cache/src/api.rs#L52-L57