Rain

Results 100 issues of Rain

Tokio has a [`Command`](https://docs.rs/tokio/1/tokio/process/struct.Command.html) struct which provides async command handling, using signals on Unix and native APIs on Windows. Wondering how hard it would be to make duct support tokio...

Currently, `duct`'s `Handle` method appears to provide two methods: 1. `wait()`, which waits for process exit and for output handles (stdout/stderr) to be closed, and 2. `try_wait()`, which checks if...

Hey Jack, been a while! hope you're doing well :) We released https://github.com/withoutboats/camino recently which adds UTF-8 path types. The readme explains the advantages of using it -- I was...

### Describe the package Hi there! I'd love to see the `evtest` package included. As documented at https://wiki.archlinux.org/title/Keyboard_input#Using_evtest, it's the most reliable way to identify scancodes and keycodes -- I...

Lots of people like, even love nextest. It's saved many projects and organizations a lot of developer and compute time. We should get a testimonials page going! If you have...

There should be a way to say "I'd like to include some extra files" on specific platforms, or if specific packages are built. We can use most of the overrides...

help wanted
A-reuse-build
A-filter-expressions

We now support including extra paths in an archive -- we should also support excluding them. Design questions: - [ ] Should we also allow default-include paths to be excluded?...

help wanted
A-reuse-build

In particular, we probably also want to add support for extra paths relative to the base output directory (e.g. `target/debug`, `target/x86_64-unknown-linux-gnu/debug`). One challenge is that there can be multiple base...

help wanted
A-reuse-build

Originally came up in #1348 -- at some point we'll likely need to grow a way to do user-specific configuration, not just repository-specific configuration. Some considerations: - [ ] Location...

At Oxide we have a use case where we want to be able to run `pfexec` (`sudo` equivalent) for some tests on illumos. This is generally possible with [target runners](https://nexte.st/book/target-runners)...

enhancement