Al Liu

Results 96 comments of Al Liu

> I don't get why you closed this? I did say that adding `impl TryFrom for Regex` should be totally fine. I closed this because `impl From for Arc` will...

> Are you using Linux? If so, the `sysctl` function is [deprecated](https://man7.org/linux/man-pages/man2/sysctl.2.html#NOTES), and the Linux maintainers suggest you use the /proc/sys interface instead. I am using MacOS, and I need...

Now, I am not quite sure whether the `sysctl` is necessary for `rustix` or not, currently, the BSD-like platform uses `libc` as the backend. The crates depend on `rustix` can...

Hi, the problem is that I do not know if there is a CI platform that supports `cygwin`.

> Can you share more about how `serde` does this? I am willing to explore this, but fixing it must not cause complexity increases across the rest of the codebase....

I temporarily solved this problem by adding a hidden struct to the generated code. I post it here in case any users have the same use case. The example generated...

Hi @TedDriggs, I noticed in #350, a new field was added in the `FromMetaOptions` struct. Basically, I think this feature also just needs to add a new field in `*Options`,...

Hi, thanks for pointing it out! I would like to make such changes.

Hi, on Unix-like systems, file locks obtained using flock are automatically released when the file descriptor is closed or the process holding the lock exits. This automatic release of locks...

It seems that, currently, this can be done by using `BytesMut::from(Bytes::from(Vec))`, should I close this?