Rust 1.57
blog.rust-lang.org
Rust 1.57
1–10 of 10 posts
Re: Rust 1.57
#2Re: Rust 1.57
#3Re: Rust 1.57
#4Re: Rust 1.57
#5What a boring release. I don't mean this as an insult, I think this is great.
Re: Rust 1.57
#6proof that using a config file was a poor idea for the long run
zig is doing it right with build.zig
Re: Rust 1.57
#7> [profile.production] proof that using a config file was a poor idea for the long run zig is doing it right with build.zig
Re: Rust 1.57
#8> [profile.production] proof that using a config file was a poor idea for the long run zig is doing it right with build.zig
I don't see how that follows. Declarative build configuration is very good and Rust needs to lean harder in that direction and minimize the use of build.rs.
Re: Rust 1.57
#9Earlier quoted context omitted.
I don't see how that follows. Declarative build configuration is very good and Rust needs to lean harder in that direction and minimize the use of build.rs.
build.rs is the way to go, configuration withing configuration files is the root for evils like XML scripting in msbuild
Gradle and SBT allow unlimited scripting and builds often end up as an unreliable mess. The more cleverness they put into the build definition, the more frustrating it is to use in practice.
Re: Rust 1.57
#10Earlier quoted context omitted.
build.rs is the way to go, configuration withing configuration files is the root for evils like XML scripting in msbuild
The best way is to keep scripting out of build files. Build recipes must be simple, boring, reliable, and same everywhere. Gradle and SBT allow unlimited scripting and builds often end up as an unreliable mess. The more cleverness they put into the build definition, the more frustrating it is to use in practice.