this post was submitted on 11 Aug 2023
562 points (95.2% liked)

Programmer Humor

19192 readers
1142 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] sip 3 points 1 year ago (1 children)

I don't think cargo is the problem. it's idiomatic and it's like "build.sh"

[–] [email protected] 8 points 1 year ago (1 children)

Cargo fetches dependencies, runs a variety of build tasks, can build a typical Rust project with little or no build scripting, and is configured with a straightforward TOML file. It's not at all like a hand-written shell script. It's also much more pleasant to use than any other build system I've seen, including shell scripts.

[–] sip 2 points 1 year ago (1 children)

yea, as I said, it's idiomatic. it replaces the need for a build.sh.

[–] [email protected] 2 points 1 year ago

Is that not true of all build systems?