Jan Haller

Results 779 comments of Jan Haller

✨ https://github.com/godot-rust/godot-rust/pull/890 (revision [`84c99b1`](https://github.com/godot-rust/godot-rust/pull/890/commits/84c99b12a560f129879cc1672d8c63521eef7ffd)) * **6 unneeded dependencies detected** (2 of which between internal crates) * 1 false positive (low, since we have a lot of codegen) * integrated into...

This would be very nice, especially for CI setups and scripting. I was thinking about using the application's exit code as well, which is currently [used for errors only](https://github.com/bnjbvr/cargo-machete/blob/70aaac14cb5f9dbef645e91701beed38a21b2771/src/main.rs#L82). In...

Gladly! I could have a look at it on the weekend 🙂

At the time I first looked into deno_core, this seemed like the most straightforward way. My thought process was: > deno_core is designed to call Rust functions from JavaScript. How...

Could you elaborate your use case a bit? The reason why I'm asking is that I'd like to keep this library as simple as possible for its primary use case,...

I assume you mean something like this? https://deno.land/manual/examples/import_export I'm not sure if I want to support dynamically loading modules from the internet (for sandboxing reasons), or implement a complex dependency...

Sorry for the late reply. Back then there was no easy way to have modules in an embedded Rust application. Directions I got were: * try to use `swc` and...

Function pointer tables occur every now and then in C libraries, however "nonnull" attributes seem to be extremely rare, meaning a decision based solely on them is likely ineffective for...

Implicit conversions between `sf::Time` and `std::chrono::duration` are probably OK, since both are already "duration" types and there's less that can go wrong than when implicitly converting to seconds/milliseconds. But I...