Remix.run Logo
jrk 3 days ago

Rust was started in 2006 and launched publicly, I believe, in 2009, the same year as Go. The point stands that these are still fairly new, but it’s not nearly that new.

ChrisSD 3 days ago | parent | next [-]

Rust 1.0 was released in 2015 making it almost ten years old.

Rust, unlike Go, was largely developed in public. It also changed significantly between it's initial design and 1.0 so it feels like "cheating" to count pre-release versions.

Still, a decade is a significant milestone.

ternaryoperator 2 days ago | parent [-]

That's right. One of the knocks on those early versions was that every new release broke previous code in significant ways. Which is one reason that v. 1.0 was so important to the community. They could finally commit code using a stable language.

cmrdporcupine 3 days ago | parent | prev [-]

Early Rust was a very different beast.

But could say the same about Python pre-1995 or so.

My biggest problems with Rust, though, are Cargo and Crates.io, not the language.

dhosek 2 days ago | parent | next [-]

Weird, cargo and crates.io is why I ended up deciding on Rust for developing finl rather than C++. The lack of standardized build/dependency management in C++ was a major pain point.

anacrolix 3 days ago | parent | prev | next [-]

crates and cargo are better than Rust actual

cmrdporcupine 2 days ago | parent [-]

... for you

gary_0 2 days ago | parent | prev [-]

Cargo and crates.io are something C/C++ developers would kill for (which is why cargo is what it is, I think).

cmrdporcupine 2 days ago | parent [-]

Just because there is an absolute shitshow for C/C++ build systems doesn't automatically make Cargo & Crates.io good.

There is a fundamental philosophical disagreement I have with the NPM style of package management and this method of handling dependencies. Like NPM, Crates.io is a chaotic wasteland, destined for a world of security & license problems and transitive dependency bloat.

But honestly I'm sick of having this out on this forum. You're welcome to your opinion. After 25 years of working, with various styles of build and dependency management: I have mine.

gary_0 2 days ago | parent [-]

I wasn't disagreeing with you. My comment was implying that cargo (and arguably rust itself to some extent) was kind of a knee-jerk response to the insane parts of C/C++, for better and also for worse.

cmrdporcupine 2 days ago | parent [-]

Ok that's fair, sorry to be defensive.

But I actually think it's more inspired by people coming from the NodeJS ecosystem than people coming from C++.