this post was submitted on 13 Oct 2023
292 points (80.9% liked)

Programmer Humor

31732 readers
1537 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 

Sorry Python but it is what it is.

you are viewing a single comment's thread
view the rest of the comments
[–] barsoap@lemm.ee 10 points 10 months ago (4 children)

cached copies of crates that you downloaded

Meh, what else is it supposed to do, delete sources all the time? Then people with slow connections will complain.

Also size-wise that's actually not even much (though they could take the care to compress it), what actually takes up space with rust is compile artifacts, per workspace. Have you heard of kondo?

[–] someacnt@sopuli.xyz 1 points 10 months ago (3 children)

Idk, maybe you can share the common packages across projects. (That can never go wrong, right? /s)

[–] barsoap@lemm.ee 1 points 10 months ago (2 children)

Sources are shared, sharing compile-time artefacts is done within workspaces.

[–] someacnt@sopuli.xyz 2 points 10 months ago (1 children)

Oh.. I did mean sharing comptime artifacts

[–] Anafabula@discuss.tchncs.de 2 points 10 months ago

You can globally share compile artifacts by setting a global target directory in the global Cargo config.

In $HOME/.cargo/config.toml:

[build]
target-dir = "/path/to/dir"

The only problems I had when I did it where some cargo plugins and some dependencies with build.rs files that expected the target folder in it's usual location.