jlrs icon indicating copy to clipboard operation
jlrs copied to clipboard

Julia bindings for Rust

Results 20 jlrs issues
Sort by recently updated
recently updated
newest added

Hi, I have some types defined in Julia, then I used JlrsReflect generated rust wrappers, there's some names spaces changes in the most recent version (dev branch) of of jlrs,...

It'd be very useful if we can ship a rust application with libjulia get included, I assume this should be possible if there is some kind of fake `-src` crate...

in PyO3, one can map a rust type using `PyObjectFrom` to Julia, I'm wondering if there is something similar in this package to create a Julia object?

First off, I just wanted to say a hearty 'thank you' to the maintainers for working on this library and answering questions - your time is appreciated. On to the...

I just tried to upgrade to `jlrs 0.20.0` updated all the rust side code and it compiles creating a shared library. But I am running into a Library Load error...

Consider the following Situation: I have a rust-crate and corresponding JuliaPackage that use `jlrs` lets call this package `jlrs-foo` it exports an OpaqueType. | crate | julia-package | |--------| ------------------...

This happens straight away with an empty project and "cargo add jlrs": ``` error[E0425]: cannot find value `SELECTED_MINOR_VERSION` in this scope --> /usr/local/cargo/registry/src/index.crates.io-6f17d22bba15001f/jlrs-macros-0.2.1/src/version.rs:198:21 | 6 | const LTS_MINOR_VERSION: usize =...

The current implementation of the multithreaded runtime makes it very easy to cause a deadlock: any thread that is adopted, must be terminated before calling `jl_atexit_hook`. The easiest solution is...

According to [this discussion](https://discourse.julialang.org/t/is-1-10-going-to-be-the-next-lts/118378), Julia 1.10 will become the LTS version when 1.11 is released. Supporting multiple versions of Julia takes a significant amount of effort, so I'm considering dropping...

Items can already be documented, i think it makes sense to support generating an export list of items marked as `pub` as well.