Peter Atashian
Peter Atashian
I remember pushing for this change all the way back in 2020, helping with some of the initial design way back then. Please *strongly* consider adjusting priorities so that someone...
MSVC for C actually suffers from the same issue. I tested it myself. Functions in COM that return structs have incorrect behavior when called from the official Microsoft C bindings...
@DemiMarie `thiscall` is not the same as an `stdcall` method.
It turned out that the workaround I use for this in winapi was actually slightly wrong. When the function takes parameters beyond `this`, those parameters need to go *after* the...
Because `winapi` is usually such a deep transitive dependency and has so many unique ways to select which features to enable, this problem is a particular nuisance for us Windows...
Crates on crates.io referencing other crates in git repos shouldn't be a problem anyway as crates.io requires that all dependencies of a crate must be on crates.io as well. If...
@tarcieri Nope, it will reject it.
@Ticki We're already deprecating version wildcards on crates.io!
You have laid claim on a very good name for a memory mapped file crate (`mmap`), but you don't seem to have the time to maintain it. If you could...
My advice is to not use `mmap` because it is abandoned and unmaintained. You should use https://github.com/danburkert/memmap-rs instead.