Kyle Willmon
Kyle Willmon
Looking into this a bit, I believe Smithay could be updated to add a new function `KeyboardHandle::set_modifier_state()` to pair with the existing [`KeyboardHandle::modifier_state()`](https://docs.rs/smithay/latest/smithay/input/keyboard/struct.KeyboardHandle.html#method.modifier_state) function. The function would need to call...
`wgpu-core v0.20.0` was [yanked](https://github.com/gfx-rs/wgpu/issues/5837#issuecomment-2226945286) because it [segfaults on rustc 1.79+](https://github.com/gfx-rs/wgpu/pull/5812). Most projects pull `wgpu-core` via the `wgpu`, which has a `v0.20.1` release to fix this... We are unfortunate enough to...
> Do you want to verify that all parsers match the behavior with and without he file explicitly specified, or do you want to change the code so this is...
It looks like CLI has been sandboxing all lockfile parsing since 376bc726. We should update the docs to reflect that change. As for the error, my suspicion is that we...
I think this should go under `phylum project update`... But it is a bit of a bummer that the default label is set with the [project preferences][1] endpoint and not...
We have considered publishing it, but we weren't sure it would be worth the effort. If you know of projects that would like to use this crate, please let us...
The `dirs` crate [was considered](https://github.com/phylum-dev/cli/pull/251#issuecomment-1105479410) when moved files out of `~/.phylum`. The crate uses locations that are technically correct for each OS, but that means using the very unnatural `$HOME/Library/Application...
The `#[cfg]` guard is all that is needed to make the code compile on musl. The hard-coded values are only necessary if the `rseq` syscall is actually being used by...
@wolfv The builds you reference seem to be passing for `x86_64` and `aarch64`, which are the only architectures supported by [seccompiler](https://docs.rs/seccompiler/latest/seccompiler/index.html#supported-platforms). Adding support for new architectures would require a larger...
> Would it be possible to make this an optional feature on these other architectures? I think it's possible with a simple patch. You are welcome to give this a...