Rick van der Wal
Rick van der Wal
Are there any plans to replace the internal `PhyRxTx` and `Timings` traits with ones from a trait crate, similar to `embedded-hal` but for radios? There is a [radio-hal](https://github.com/rust-iot/radio-hal) crate for...
This PR extends the CLI to allow specifying multiple migration sources: ```shell sqlx migrate run --source migrations --source fixtures ``` It will take the migrations within all specified folders, and...
Given a template like this: `templates/base.html` ```html {% block empty %} {% endblock %} {% if let Some(var) = var %} {{ var }} {% endif %} ``` The following...
### Describe the bug When not declaring an explicit type for props, it seems `type` declarations cannot be `export`ed. ### Reproduction This works: ```svelte export type ExampleType = 'A' |...