Ian Campbell
Ian Campbell
https://pypi.org/project/argparse-manpage/ * Refactor construction of `argparse.ArgumentParser` into a `get_argparser()` function in each binary. * Set `prog` property (the default uses `sys.arg[0]` which breaks with `argparse-manpage`, arguably this is an `argparse-manpage`...
The [docs](https://mozilla.github.io/uniffi-rs/udl/builtin_types.html) indicate that `[ByRef] string` should work for `&str` and #229 points in that direction too. However it seems both of these are referring only to `interface` and not...
I have a struct with `Vec` fields which is exported with `#[derivce(uniffi::Record)]` as well as exported methods which receive `Vec`. In Kotlin these get rendered as `List`, as if they...
Once moby/moby#2578 is put to bed I'd like to convert the kernel build over. Looking at `kernel/Makefile` I can see 4 possible issues which may need enhancements to `linuxkit pkg`....
This seems to take several minutes, a decent fraction of the overall time in my simple use. Instead of changing the ownership of `${ANDROID_HOME}` instead arrange to run individual commands...
I've a project with a bunch of non-{go,bash,makefile,dockerfile} files in them (as well as some of each of those four). It'd be great if the support for different file types...
Fixes #384. I included both the disable LTO bit and the capability to support custom profiles. I'm happy to drop either one. I'm concerned about how custom profiles will interact...
With: ```toml [profile.release] lto = true ``` in my workspace `Cargo.toml` running `cargo fuzz run «target»` fails to link with: ``` = note: rust-lld: error: undefined symbol: __sancov_gen_.327 >>> referenced...
**Describe the problem you have/What new integration you would like** Using (at least) EXT1 based deep sleep with `ESP_EXT1_WAKEUP_ANY_HIGH` requires the use of an external pull down resistor _or_ configuring...
Currently it is possible to ignore unknown flags (with `FlagSet.ParseErrorsWhitelist.UnknownFlags`) but there is no way to find out what they were after the fact. Add a method which registers a...