Erick Tryzelaar

Results 79 issues of Erick Tryzelaar

I'm doing an audit of Tokio, and as part of it, we noticed in https://github.com/tokio-rs/tokio/issues/4685 there are a few places where tokio is casting a `&mut [MaybeUninit]` to a `&mut...

**Is your feature request related to a problem? Please describe.** On Fuchsia, we are updating our vendored version of Hyper from 0.13 to 0.14 in https://fuchsia-review.googlesource.com/c/fuchsia/+/611683/. As part of this...

S-feature

**Version** Hyper 0.13.10 **Platform** The output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows) Fuchsia, as well as on Linux and OS-X **Description** Fuchsia uses hyper as...

S-bug

In the style of https://github.com/async-rs/async-std/pull/836, I noticed that async-std's net is nearly the same as https://github.com/smol-rs/async-net. Would it be worth porting async-std to use async-net?

This is a prototype to explore an alternative to #115. The idea here is that we change argh_derive to produce an implementation of a new `Help` trait, that has an...

As suggested in https://github.com/google/argh/pull/112#discussion_r764403695, @richkadel suggested that if a field doesn't have an `arg_name` specified, we could generate one automatically for it to make it prettier for help messages or...

It's rather surprising that we can do this: ``` use argh::FromArgs; #[derive(FromArgs)] #[argh(description="")] struct Cmd { #[argh(subcommand)] _sub: SubCmd, } #[derive(FromArgs)] #[argh(subcommand, name = "sub sub", description="")] struct SubCmd {}...

It appears that pysaml2 does not support certificates with passwords, which results in OpenSSL prompting for a password when the certificate is parsed. I don't think it'd be terribly hard...

feature
wontfix
closing

More follow on to #306, what do you think about marking all the `EventKind` enum types, and child enums as `#[non_exhaustive]`? Looking at both the [fsevents flags](https://developer.apple.com/documentation/coreservices/1455361-fseventstreameventflags) and [inotify manpage](https://man7.org/linux/man-pages/man7/inotify.7.html),...

A-enhancement
Z-needs implementation
A-discussion

As part of developing #307, I realized it might be worth hiding the public fields in `Event` as part of 5.0.0. This would allow the underlying object to be extended...

A-enhancement
A-discussion