jlrs
jlrs copied to clipboard
Julia bindings for Rust
Most methods in jlrs map to one or more functions in the Julia C API. In order to make jlrs more accessible to people who are already familiar with this...
Could someone add an example of sending structures containing vectors from Rust to Julia? This is not actually a issue, but there's no discussion tab here in this repository. Thanks
I want to be able to use GTK.jl in combination with jlrs, in particular I want it to be possible to have multiple GR plots open and manipulate them without...
I _guess_ jlrs is not compatible with MacOS, at least as far I could see from the source code. Since MacOS comes with a relatively similar toolset to that of...
The only information that's currently available is contained within the docs. It's hard to provide a step-by-step tutorial that progressively explains how to use jlrs that way, a website and...
Not sure if its a bug in my usage of jlrs or what, but if you monitor memory usage on the mac it goes up to some crazy number like...
Hi! Could you please help me get it to work on Mac OS? I get the following error: ``` cargo:warning=In file included from src/jlrs_cc.c:1: cargo:warning=src/jlrs_cc.h:1:10: fatal error: 'uv.h' file not...
Julia has libraries like [Expronicon](https://expronicon.rogerluo.dev/intro/adts/defining) or [MLStyle](https://thautwarm.github.io/MLStyle.jl/latest/syntax/adt.html) which provide Rust-like enums. Is it possible to somehow use these libraries to map Rust's enums to these types? (in the case of...
Many places use `T` for the generic target type. Exclusively using `Tgt` adds clarity and makes `T` available for other generics.
Currently the only way to use Julia from multiple threads is by using the async runtime and send tasks to it. I'd like it to be possible to use a...