Boscop
Boscop
I'm also interested in how to do this with reaper-medium.
@kunjann `par_bridge` distributes iter items across rayon's thread pool. Even though jwalk executes on your custom pool, the resulting items are yielded back to the caller's thread. And then you...
@thgh I'm using node v18.12.0 The Cargo.toml as input is processed by `@wasm-tool/rollup-plugin-rust`.
There are some crates for NAT traversal, like this one: https://github.com/maidsafe-archive/nat_traversal But it shouldn't be hard to implement, as long as you have a mediating server that's not behind a...
@iqualfragile Every subotai node can easily find out if it's behind a NAT (e.g. through a list of public STUN servers or by asking the router for the public IP...
I didn't know about pwnat, it seems awesome, it would be so useful to have a cross-platform implementation of it in Rust!
Yes, I think a lot of other applications can benefit from it as well. (E.g. right now I'm working on a multiplayer game where every client also comes with a...
Any update on this? How difficult would it be to port pwnat to Rust?
> based on the data that @schuster gathered, it looks like enabling i32 fallback would basically always pick the wrong type for simple things like const FOO = 22. This...
@Centril There is also the case where the crate that defines a constant doesn't use it in its own code, but exports it, so it can't be inferred (so it...