What's everyone working on this week (40/2024)?

New week, new Rust! What are you folks up to?

Password Reset without using an email in actix-web.

1 Like

Continuous Delivery and GitOps with FluxCD to get my stuff shipped.
More Rust related, I have to write some meta-data management service.

Try to contribute to Rust: Link for source of is_x86_feature_detected is broken · Issue #96506 · rust-lang/rust · GitHub

1 Like

I've given a Yocto/OE build server/client library a finishing touch.
The client allows to upload our artifacts (a JAR file) to the build server via HTTP and the build server installs the artifact into the Yocto/OE build environment and builds an image with additional parameters extracted from the version information contained within the JAR file.

Since the server is running on powerful hardware, and because the build server software itself is not a bottleneck (a build usually takes ~1h), I opted for rocket as a webserver framework.

Besides that I'm rewriting my ASHv2 implementation to use one transceiver thread instead of two separate transmitter and receiver threads.