Ryan Avella
Ryan Avella
My problem may be unrelated as I'm not using Vite, but I'm seeing similar behavior. I am currently relying on the unstable build-std feature, and I noticed that if I...
@sortofsleepy After browsing the issue tracker a bit more, I've come to the conclusion that console_error_panic_hook is no longer maintained, along with several other repositories under the rustwasm organization. The...
FreeBSD does not have `fallocate`, only `posix_fallocate`, so this would need to be split up into at least two implementations.
It is probably worth noting that `fs2::FileExt::allocate` is already somewhat broken on FreeBSD + ZFS, so it may need to be handled entirely separately from Linux regardless, see here: https://github.com/danburkert/fs2-rs/issues/25
@tabokie for what it is worth, [I submitted a PR to fs4](https://github.com/al8n/fs4-rs/pull/1) and they fixed it. I haven't seen any activity on fs2 for >5 years, but fs4 is a...
@raycoe I'm not sure if fs2 is maintained any more, the last commit was >5 years ago and several important PR's have been left open for nearly as long. You...
> I feel that a nontrivial number of people will either overlook that requirement, ignore it, or not bother to check what the safety requirements actually are. I suspect that...
What if, instead of a breaking change to the existing API, it were introduced as a new API entirely? I'm imagining something like this: ```rust /// Create/open a named lock...
I just had a realization, it should be possible to escape arbitrary strings while addressing your earlier concern about interfacing with C programs. This should work on both Windows and...
Ah I see the issue, the error message is misleading: https://github.com/rust-fuzz/honggfuzz-rs/blob/912092c1f14a505d180d888894e895a5baed4839/build.rs#L40 It isn't actually running `make -C honggfuzz clean`, but rather `gmake -C honggfuzz clean`. I'll send a PR in...