Vladimir Ulianitsky

Results 37 comments of Vladimir Ulianitsky

> to which version of rust you have installed Yep, that's exactly why I've added this. > Should this also set `CARGO_INSTALL_ROOT`? It works OK for me. I use this...

Yep, so I'm fiddling around `load_iseq` and I needed to modify it, had to use `rb_iseq_load` to convert modified version back to `InstructionSequence` ```ruby # https://stackoverflow.com/questions/30562292/how-can-i-store-and-read-a-rubyvminstructionsequence # Retrieve Ruby Core's...

@David-Petrov, it [works](https://github.com/uvlad7/robusta/commit/511c295f057114886c538bccd88f73ae62dfc7f5) in #50 version. I actually don't understand why it doesn't work in the master version, a lot of changes were made, but you suggestions aren't true. UPD:...

Need to ensure it works well with abstract classes. And how to support interfaces: traits, separate types with cheap as/into conversions?

Also check nested and inner classes, static fields

I created an example for illustration inside rust_blank project ```diff diff --git a/examples/rust_blank/ext/rust_blank/src/lib.rs b/examples/rust_blank/ext/rust_blank/src/lib.rs index 26ba392..ac9dcb0 100644 --- a/examples/rust_blank/ext/rust_blank/src/lib.rs +++ b/examples/rust_blank/ext/rust_blank/src/lib.rs @@ -1,9 +1,5 @@ -use magnus::{ - encoding::{CType, RbEncoding},...

A real-life example is ``` FROM buildpack-deps:bookworm RUN apt-get update -qq -y --allow-unauthenticated && \ wget https://repo.percona.com/apt/percona-release_latest.bookworm_all.deb && \ apt install -y ./percona-release_latest.bookworm_all.deb && \ rm percona-release_latest.bookworm_all.deb && \ percona-release...