Earlier quoted context omitted.
> Would love to hear from a Rust contributor why that is and what's being scheduled to be done about it. I haven't spent time with the code yet, so I can't comment. It shouldn't be the runtime, though, as our runtime is about as big as C or C++'s. My first thought would be that Vec's growth factor may be poor in this instance, but without reading the code, who knows. > Rust is... ?? Rust statically links everything b…
I read more than once that rust has no runtime. Could you please clarify whether it has a runime, and if it does, what it consists of?
Rust's runtime is here: https://github.com/rust-lang/rust/tree/master/src/rt and https://github.com/rust-lang/rust/tree/master/src/libstd/rt
As you can see, it's very, very small. It mostly handles things like unwinding, at_exit handlers, and the like.