Marco Napetti

Results 32 comments of Marco Napetti

Yes, I already read those issues, my implementation (I made some more edits since I opened this issue, maybe you missed it) is some kind different, it works on anything...

Yes, I understand your point, I was aware of the problem (it was described in one of the previous issues). I used the crate in some real implementations, the CPU...

> If you are happy with a solution that is basically just a busy spin loop, then you don't need `parking_lot` at all. You don't get any of the benefits...

Yes, thank you, it was the "can be done better" part, but, as far I can see, it's not quick and easy, or someone else would have already done it....

Using the new async/await syntax I've been able to do something like you were talking about. The approach has changed, now the system revolves around a wrapper on the RawLock...

Where do you see thread locking in my code? It's the purpose of it having Mutex and RwLock non-threadlocking

If the parse is made by `ciborium`, just use a `ciborium::de::from_reader` into it, `from_reader` takes anything that impl `trait Read`, and `Read` is implemented for `&[u8]`, a `String` becomes `&[u8]`...

Last code update has been 8 months ago, there are PR stuck since July, is this crate dead?

That's a good question... I'm kinda alien to the typescript world, I'm just trying to expose data from a WASM module and let frontend people live happily with it... In...

cargo-c produces a platform-correct shared library a pkg-config file and one or more headers, cmake can consume the pkg-config files fairly easy. Il mar 29 ott 2024, 18:45 Mathias Kraus...