An important bugfix in 1.39.0 that wasn't mentioned in the release announcement is probably: <a href="https://github.com/rust-lang/rust/pull/63402" rel="nofollow">https://github.com/rust-lang/rust/pull/63402</a><p>It's important because unless rustfmt is available, bindgen would put everything onto one line: <a href="https://github.com/rust-lang/rust-bindgen/issues/1600" rel="nofollow">https://github.com/rust-lang/rust-bindgen/issues/1600</a><p>Rustc would generate (unrelated) warnings for the generated code but before the bugfix it'd print the entire line, hitting the maximum log size limit on CI and causing the build to fail because of that.
><p><pre><code> #[cfg(windows)] slice: &[u16]
</code></pre>
Am I the only one who finds this syntax ugly - to the point of being inappropriate for a general-purpose programming language?
Time to give this lang a try. Been wanting to build a web assembly large data table mechanism for a while, and rust appears to be an idea candidate from what i read (speed and reliability). Although it could be done using SQLite, i think could be a nice little project for learning Rust.