Aria Desires
Aria Desires
Also note that the suggester is really limited, in that I didn't want to teach it to edit/remove/merge rules. So it always just suggests new rules to concatenate at the...
I'm gonna hold off on merging this until @bjorn3 is happy with it, since this is gonna make a bunch of work for 'em, and it's kinda "for" 'em.
Added cargo-style cfgs using cargo_platform and `rustc --print=cfg`!
repr(simd) exists, we should add that as `@repr simd` on the same level as `@repr transparent`
I am tentatively marking this as a "good first issue" because while there's a lot of things to change, the compiler errors and copyable array code should hopefully guide you...
Ah sorry I missed this! Yes cargo doesn't let you have platform-conditional-binaries. It *does* however let you have feature-flag-conditional binaries. So you could, in theory, introduce a `windows-gui-bin` feature or...
Sorry I should have been more clear -- I believe we can't ship this without upstream work in https://github.com/axodotdev/cargo-dist/ If I checkout your branch (which is indeed written Correctly as...
On paper it's actually not a huge lift. It's ideally mostly just adding config option similar to the [min-glibc-version](https://opensource.axo.dev/cargo-dist/book/reference/config.html?highlight=bins#min-glibc-version) but for [package.binaries](https://opensource.axo.dev/cargo-dist/book/reference/config.html?highlight=bins#packagebinaries) instead. Then that config value would need to...
platform-specific bins support in cargo-dist https://github.com/astral-sh/cargo-dist/pull/17
Ok I've locally confirmed uvw.exe does what it intends, by creating a windows shortcut ``` C:\Users\gankra\dev\uv\target\release\uvw.exe run C:\Users\gankra\dev\tmp\tkinter-app\main.py ``` And double-clicking it. (And changing uvw.exe to uv.exe does indeed spawn...