Adding a few more things to Steve’s response:<p>> <i>Rust does not have a formal language specification […] A proper mature language (with 1.0 in its version) should have a formal specification</i><p>Python doesn’t have a formal specification. It doesn’t even have a <i>semi</i>-formal specification. I would consider Python a proper mature language. (… even if it doesn’t have 1.0 in its version!)<p>Some recently-published work in the general direction of formally specifying Rust behaviour: <a href="https://people.mpi-sws.org/~jung/thesis.html" rel="nofollow">https://people.mpi-sws.org/~jung/thesis.html</a><p>> <i>In Rust it’s undefined because there’s no format specification to tell you even that much.</i><p>That seems to me an very unreasonable definition of “undefined”. By that token, <i>nothing</i> in Rust is defined, which renders the term “undefined” devoid of meaning and completely useless. Rather, the implementation defines the specification, which, yes, is weaker than a formal specification, but not <i>that</i> much weaker. (Rust’s stability guarantees do allow it to retcon, but only if safety is on the line, or sometimes if you can convince people that affected code probably doesn’t exist, or was wrong anyway. Changing argument order evaluation in this sort of case would break plenty of real-life code, and so will never happen.)<p>> <i>[…] traits […] the problem is not me being stupid but rather the lack of formal description on how it’s done and why what I want is so hard.</i><p>I disagree that the lack of a formal description of how it’s done is the problem, though such a description would certainly help. I feel that the real problem here is that you’re trying to treat traits as something that they’re not, trying to do things that you’re used to doing in dynamic/GC languages that just don’t map to Rust because of it being a thin abstraction over what can be fastest. Upcasting and downcasting trait objects is <i>really</i> rare, because other constraints of the language make them just not very useful operations. The main reason you want those operations in other languages is inheritance, not interfaces, and Rust doesn’t do inheritance, and traits aren’t inheritance.<p>> <i>rustc problems</i><p>The bootstrapping process is not laughably bad, the developers have merely prioritised their own ergonomics rather than pandering to making proving a theoretical problem false easier. Still more, they’ve prioritised actually <i>using</i> new functionality, which helps make sure that it both works properly, and is the <i>right</i> new functionality. So I find two or three good reasons for doing it the way they have, and one weak reason not to do it that way.<p>The LLVM dependency: I feel that this complaint is more about there being only a single Rust backend, rather than about the LLVM dependency. This point is then debatable. Yeah, Rust would be <i>more</i> mature if it had more backends (or better, more full implementations), but does having only a single implementation make it immature? Eh. Plenty of mature languages functionally have but a single implementation.<p>———<p>I definitely consider Rust not yet mature, I just don’t think that most of the reasons in this article are legitimate. I <i>would</i> focus in no small part on documentation, just not requiring <i>formality</i> of specification or documentation before I’d consider those parts mature. But note that I said that I’d consider <i>Rust</i> not yet mature, rather than the Rust <i>programming language</i>. Because in most regards I <i>do</i> actually consider the programming language itself mature, and a lot of its tooling (more than popular languages thrice its age), though there are definitely still gaps in both. But the ecosystem <i>around</i> the programming language, that’s the area where it’s not yet mature. Rust is much more complex than many languages (e.g. Go), so it takes a lot longer to fill in the spaces in library availability, and there are many very significant gaps that haven’t been filled yet. GUI, for example, is very immature space. Audio is… eh, it’s getting somewhere, but I wouldn’t call it <i>mature</i>. Web is approaching maturity for some sorts of tasks, but is not generally mature.