Josh Triplett
Josh Triplett
Admins and moderators should be able to "lock" a topic. This should: - Add a visible "lock" indication to it - Prevent anyone other than an admin or moderator from...
Factor out more common field values that don't vary among individual crates. - Inherit `package.categories` from the workspace - Inherit `package.homepage` from the workspace - Inherit `package.repository` from the workspace
OpenSSL just recently released a release candidate for 3.0, and the 3.0 branch is where the relicensing to purely Apache 2.0 has happened. Hopefully, BoringSSL will be able to follow...
rustls has support for multiple backends, including aws-lc-rs, as an alternative to ring. Add support for using either as the backend for rustls-acme. This builds on https://github.com/FlorianUekermann/rustls-acme/pull/59 to avoid conflicts....
This PR upgrades most dependencies to their current versions. - Upgrade smol and async-io - Upgrade to current ring - Upgrade to current rcgen - Upgrade to current base64 -...
In `sudo` for Linux, the long option name for `-E` is `--preserve-env`; please support that as the long version of `-E`. `--preserve-env` additionally accepts an optional list of environment variables,...
`sudo` for Linux supports a `-D`/`--chdir` option, which changes to a specified directory before running the specified command. Please consider supporting the same option.
`sudo` for Linux supports `-s`/`--shell` to run a shell as the target user. Please consider supporting the same option, as a shorthand for `sudo cmd`. `sudo.ps1` could check for this...
`sudo` on Linux has an option `-H`/`--set-home`, which sets the home directory to that of the target user. (If this is already the default behavior, then consider accepting and ignoring...
Right now, instrumenting a type that implements `IntoFuture` requires explicitly calling `into_future().instrument(...)`. I'd love to have an impl of `Instrument` for any type implementing `IntoFuture`, to allow writing just `.instrument(...)`.