Comment by kstenerud
> It is extremely difficult to write low level libraries in Rust
Really? I've not found it at all difficult to write low level libraries in Rust.
> It is extremely difficult to write low level libraries in Rust
Really? I've not found it at all difficult to write low level libraries in Rust.
For me it was very difficult to make an io library on io_uring that is properly safe.
Also using arena and other special allocators in different sections of the program. While maintaining hard memory limits for different sections of the program.
These are possible to do in rust but it is very difficult for me so I decided to just not do it. Otherwise I have to spend 5x the normal amount of time to make sure the library cannot be misused by the user ever.
This is pretty pointless since I’m the only one who is going to use that code anyway.
Could be skill issue or w/e but I just find zig easier to make progress in