Matthias Krüger

Results 184 comments of Matthias Krüger

``` kondo . [kondo-lib/src/lib.rs:223] entry.path() = "/home/matthias" [kondo-lib/src/lib.rs:224] entry.path().read_dir() = Ok( ReadDir( "/home/matthias", ), ) Projects cleaned: 0, Bytes deleted: 0.0B ``` I can also see that the `for dir_entry...

Since I made the ticket, ion moved to gitlab, as primary development place but I'm not sure if this makes a difference. I too get a failure on ```` cargo...

I looked through the preexisting cargo tickets, I think we might be a victim of this one: https://github.com/rust-lang/cargo/issues/5495

`clean-unref` is supposed to run inside a rust project (git repo or crate or whatever), so yeah, I need to improve the docs and perhaps the error a bit, thanks...

Right, so we could have something like `cargo-cache clean-unref -r / --recursive ` where we can pass a directory or just "." for the cwd. Some notes on how that...

You might be looking for [sccache](https://github.com/mozilla/sccache).

Thanks! Also just found this twitter thread mentioning it: https://twitter.com/nick_r_cameron/status/1237481127129960448

might get away with checking if any files contained inside the extracted sources are newer than downloaded source archive (.crate)

compare in-zip file against local source cache https://rust-lang-nursery.github.io/rust-cookbook/compression/tar.html ````rust use flate2::read::GzDecoder; use std::fs::File; use tar::Archive; fn main() -> Result { let path = "datetime-0.5.2.crate"; let tar_gz = File::open(path)?; let tar...

For the git source, we can go into checkouts, for instance: `~/.cargo/git/checkouts/druid-f6980810fb848923/c42de0b` and check with `git-status` / `git diff`