Christian Duerr
Christian Duerr
According to the upstream bug report, the flag should no longer be necessary and it causes a failure on platforms where it is not supported.
This takes the existing `fmt_error` module from cli and puts it as a public module into `deno_runtime`. While the module isn't big, its functionality is certainly useful for any application...
This adds an implementation of `Default` for both `WorkerOptions` and `BootstrapOptions`. Since both of these structs are rather big, this should make it easier for people unfamiliar with the internals...
Before this patch when running into errors due to `args_conflicts_with_subcommands`, you'd get an output looking like this: ``` error: The subcommand 'auth' wasn't recognized Did you mean 'auth'? ``` This...
### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Clap Version 3.2.8 ### Describe your...
Currently when setting `ignore_errors(true)` anywhere but the top level, it would not have any effect. As a result this means it's not possible to ignore errors for a subcommand while...
This adds x86_64-unknown-linux-musl as a new supported target for the pre-built rusty_v8 library releases, which should avoid multiple downstream consumers having to build this themselves. This target is useful when...
I don't think the current `rust-landlock` crate has a way to query for landlock support, however even after #12 this might still be desirable. Some applications might want to give...
Currently, the `handle_access` method states the following: ``` Attempts to add a set of access rights that will be supported by this ruleset. By default, all actions requiring these access...
We're already using the `Command` interface on all platforms since we need to spawn a separate process on Linux. However we're still manually removing the environment variables from the process...