
Want to follow along with Rust development? Curious how you might get involved? Take a look!

I saw some other crate doing something similar but using wasm, the idea is to sandbox the binary used as a proc macro. So that seems a bit better. Can't see to find it any more.
EDIT: Found it https://lib.rs/crates/watt
Over 2 weeks ago I asked about this situation. No reply yet. I wouldn't be so sure at this point.
I would really like some more transparency on this topic.
Debug builds link in <.4 seconds.
With such a small program I expected fixed costs to dominate. Not surprising there is no or almost no difference. You really have to go to cases where linking takes 10s of seconds to see scaling difference, even between ld.bfd and ld.gold.
I did those sort of measurements for my work at the time (a few years ago, before mold was a thing). I have not had the cause or opportunity to measure lld or mold however. Maybe it isn't faster than lld (certainly it seems so for small projects), but I don't think these result say anything useful about larger programs.
The best option is not to take the word of others (myself included) however, but measure on your own application and see which is the best option in your case.
If you however do want to measure linking something big, look at something like Chromium. That isn't rust code though. Not sure what a suitably large rust project would be.
Some additional thoughts (responding to myself here):
Say what I think with as neutral tone as possible and leave it at that
A hypothetical person might respond to this "But I have strong feelings on subject X!"
To which I respond: consider what effect your words will have. Inflammatory words will just entrench people's position more, in both camps. People on the fence are likely to walk away from the whole thing out of disgust (especially if both sides behave that way) or take the side of your opposition.
Reasoned arguments in neutral tone however will rarely change the opinion of those who strongly disagree with you (there is a slim chance). But it might strike a chord with those who are on the fence.
A tendency for debates to get polarised is a general problem in modern society in my opinion, not just in Rust. Not just politics. Not just media. Pretty much everywhere. I have seen it here on lemmyrs.org as well in the discussion of the drama around lib.rs. But I don't think calling out specific instances would do any good (rather the opposite in fact, as it might easily be interpreted as an attack on the posters person).
Well, Rust is MIT + Apache 2.0, so they can do this. It isn't copyleft.
Personally I consider it a a shame that rust and it's ecosystem isn't at least weakly copyleft (e.g. LGPL or MPL) though there are some good reasons not to use those specifically. (LGPL isn't not well defined if you don't use dynamic linking, MPL is younger than rust, but would have been an excellent fit otherwise). And the ecosystem follows the leader for the most part.
But that is neither here nor there, and I'm not interested in arguing about licenses on the Internet. :)
Status on Lemmy version updates?
I have noticed there hasn't been any news or details on the issues with upgrading lemmyrs.org. It has been a couple of weeks since the last post on that topic.
Could we have a status update? What sort of error was it that you hit when upgrading? Do you have a link to a relevant upstream bug report?
I would love a bit more transparency on this. Perhaps you just haven't had time to work on it (this is a side project for you as I understand it), which makes sense. But perhaps there is something the community could do to help then?(Though I admit that I personally have zero web dev experience, working mostly in embedded, and would be of limited use.)
Disclaimer: I love the lib.rs search and general UI. I don't like crypto currencies.
I think the way to avoid drama is to be very clear and transparent in communication. In this case I think a way to do this would be to label data that lib.rs synthesised. Maybe a asterix next to corrected categories that on mouse over (long press on phones) says something like "inferred by lib.rs due to missing data"? Exact wording could certainly be improved, and might differ on context. Perhaps the synthesised data could be a different colour as well to stand out.
Having a list of packages that were filtered out might also help. Here I'm thinking a simple text file (set to not be indexed in robots.txt) with all the package names that have filtered along with the reason listed (e.g. "auto detected name squat"). Anyone interested could download the file and take a look, as well as contact you for corrections.
Ranking algorithms is harder to be transparent about (and it is not my field of expertise), so I can't offer any advise here. Perhaps nothing is needed?
That sounds potentially useful.
I have wondered at times what ipfs was for. What can you find on it that isn't on the normal web? What is the killer application for it (and please don't answer anything related to crypto currency, I'm not a fan of those)?
Maybe this can help answer that?
All this drama is sad. I like lib.rs, it has better search results and easier to use UI than crates.io.
If it was me who ran it (and it isn't) I'd probably include crypto results but put a big banner on top of their pages (and small ones in their search results) about me distancing myself from that. The crucial thing I belive is to make it clear what is happening, and to communicate clearly and transparently.
I wouldn't reuse "deprecated" tag, nor use derogatory wording in general. While i agree with the sentiment that crypto is a major problem and rather useless, some of the wording lib.rs has used is rather loaded, and feels like it can be interpreted as akin to name calling.
I found that the best way to reduce drama in my life is to not get sucked in. Say what I think with as neutral tone as possible and leave it at that. Not always easy, but I strive for it (which is what I'm attempting to do here, and why I rewrote some parts of this post after reading it and thinking about how it could be interpreted).
Additionally, I hope the author will reconsider the move to closed source, because I dont think that will solve anything. Rather it risks adding fuel to the fire, since people wanting to argue will point to this and say "look, we have no idea how it works any more, you can't trust it" (or even worse things).
Want to follow along with Rust development? Curious how you might get involved? Take a look!
Introduction Embedded programming can generally be classified into two areas; hosted and bare-metal. Bare-metal programming assumes a clean slate, meaning that the target hardware or environment includes no prior software. This is opposed to the conv...
A look at embedded programming on ESP32 using STD. This is quite unusual, as I belive most other embedded targets only support no-std.
Note: I'm not the author, I just find this interesting, as I have a personal project using std on ESP32 as well.
Agreed, but I know there were complications: https://lemmyrs.org/post/52291
I don't know if they figured it out, reported the issue upstream, or how much they debugged it are all.
But if it isn't resolved soon, it might indicate that it would be better to move to a better maintained server.
Operating System Development in Rust
I'm not the author, and it isn't an exact fit to this embedded community, but it is related. We deal with many of the same issues.
One thing in particular I found interesting was the section about the crate volatile
.
Actually you don't need to build your own. The rust on esp project provide a espup tool that downloads a pre built toolchain for Xtensa.
Rust has gained significant attention and popularity among developers due to its robustness, memory safety guarantees, and emphasis on performance. However, beyond being a language, Rust is also a thriving programming project with a vibrant community...
I am not the author, but this interests me.
This blog post is the tenth of a multi-part series of posts where I explore various peripherals in the ESP32C3 using embedded Rust at the HAL level. Please be aware that certain concepts in newer posts could depend on concepts in prior posts. Prior ...
I'm not the author, but thought I should get the ball rolling in the embedded community.
This is the latest post, from last week. However, this blog has a lot of useful tutorial style posts about embedded Rust.