jaskij
jaskij
@cuviper the targets are custom targets, generated by [`cargo_common.bbclass`, starting in line 32](https://github.com/meta-rust/meta-rust/blob/1ed669c464a113cddba8222b419565273d3410f2/classes/cargo_common.bbclass#L32)
@Kixunil I've got a proposal written up for this, do you want it here or in a separate issue? The TL;DR is that `#[path = "src/config.rs"] mod config` is legal...
# TL;DR `#[path = "src/config.rs"] mod config` is legal in `build.rs`. # What to do: Add a `#[derive]` which allows for parsing, and can be used to generate what is...
> Sounds interesting, feel free to write it here! I also had an idea recently to do something similar to prost - they have both build script and a proc...
(Sorry for multiple comments, I don't feel comfortable editing in stuff in issue comments). While Prost is a good example, I wouldn't go too far in how they do things...
> Hmm, the idea of generating Toml from .rs sounds interesting! I see one problem with it that's probably fixable: the module may contain types that are not available in...
@Kixunil for now, to avoid the hassle of generated code, I'm testing an option of doing `#[derive(Deserialize, Merge, StructOpt)]`, `Merge` coming from the [`merge`](https://docs.rs/merge/latest/merge/) crate. My use case does not...
I am a random passerby, with a thought. ARM 8.1-A (pretty much ever modern Cortex-A core) has [CRC32 ISA extensions](https://developer.arm.com/documentation/dui0801/g/A32-and-T32-Instructions/CRC32). @Marc-B-Reynolds 's code might be fast on those targets?
An option which, while it won't eliminate the pain completely, would probably alleviate it. docs.rs and your website should link to the correct version, not to the `main` branch. For...
> To be clear - most of the time I want to link to the most current example code The solution I proposed would link them to the one which...