Vitalii Kryvenko
Vitalii Kryvenko
I've since updated my docs website to a custom domain managed by Cloudflare. I still deploy to Github Pages, but I now have a Cloudflare proxy server in the middle....
Some more context. While digging a bit more I also uncovered a bug in `proc_macro2` crate (https://github.com/dtolnay/proc-macro2/issues/470). The standard library's `proc_macro::Punct::new()` explicitly panics if you pass an incorrect character to...
@oli-obk looks like the merge of this PR broke master [CI](https://github.com/serde-rs/serde/actions/runs/11447410021/job/31848669011#step:4:189). The CI on this PR was green some time ago, and it broke with time
I would like to bring up the problem that I have with this option. I already have a large codebase where enabling this option results in literally **`30 000` lines...
I'd like to be able to define my build with a bake file, and reference it from docker-compose, so that docker-compose invokes `bake` to perform thebuild. Isn't it as simple...
> ```rust > bot.send_message() > .chat_id(chat_id) > .text("Hello world!") > .build() > .call() > .expect("Should work"); > ``` This would require using the method builder syntax like this: ```rust #[bon::bon]...
> But that can probably wait for https://github.com/elastio/bon/issues/247 Note that it will generate additional several hundreds of `From` implementations, which is going to harm the compile times. It would be...
Ah, right async fn in traits isn't recommended for public traits. Yeah, that's a bummer. This lint can be ignored, or you could use boxing with `async-trait` crate, but I...
Thank you for looking into this! I'm trying to understand what the expected behavior and further changes here should be. From what I see: - The change in rustup was...
@rami3l I see, I'm all for fixing the old implicit behavior. I hope there aren't too many people who mistakenly relied on it. It took me some time to figure...