I have never used them but there are some tools that advertise being able to run GitHub Actions locally, like WRKFLW.
- 1 Post
- 9 Comments
Starfighter@discuss.tchncs.deto
Programmer Humor@programming.dev•JPEG XL is Dead. Long Live JPEG XL
20·2 months agoI assume you mean AVIF? Because AV1 is not an image (file) format but a video compression format (that needs to be wrapped in container file formats to be storable).
Starfighter@discuss.tchncs.deto
Rust@programming.dev•Project goals update — September 2025
2·3 months agoThe
std::offloadproject is kinda cool. Hadn’t heard about that before.It’ll be interesting to see where that leads.
Starfighter@discuss.tchncs.deto
Rust@programming.dev•Just call clone (or alias) · baby steps
3·3 months agoI was under the impression that the compiler already optimizes out a lot of clones where the clone is primarily used to satisfy the borrow checker. Is that not the case?
Starfighter@discuss.tchncs.deto
Rust@programming.dev•crates.io: Malicious crates faster_log and async_println | Rust Blog
12·5 months agoAs long as people are using Rust, it will necessarily attract this kind of action. This won’t be the last attack we will see.
I think the team has handled it quite well.
Starfighter@discuss.tchncs.deOPto
Rust@programming.dev•The release of asciinema CLI 3.0!
2·5 months agoThe post text doesn’t seem to get displayed on some clients (Voyager) so I’ll attach it here as well:
asciinema (aka asciinema CLI or asciinema recorder) is a command-line tool for recording and live streaming terminal sessions.
This is a complete rewrite of asciinema in Rust, upgrading the recording file format, introducing terminal live streaming, and bringing numerous improvements across the board.
Starfighter@discuss.tchncs.deto
Rust@programming.dev•Faster linking times with 1.90.0 stable on Linux using the LLD linker
5·5 months agoThere are even little interactive tools for it like: cargo-wizard
Starfighter@discuss.tchncs.deto
Rust@programming.dev•Faster linking times with 1.90.0 stable on Linux using the LLD linker
15·5 months agoGood move. Especially for incremental builds linking tends to take up quite a large percentage of the compile time.
I’ve mostly switched to mold for that reason but having a fast default linker is nice.
I ran into the same issue not so long ago and at least for
no_stdI had to resort to using theasync_traitcrate. (The project isno_stdbut hasalloc)I can’t recall the exact error so it might have been due to mixing async and non-async methods in the same trait. I would have to look at it again…