rusty_v8
rusty_v8 copied to clipboard
Rust bindings for the V8 JavaScript engine
Hi! I'm getting a segfault when I'm trying to use this with [wgpu](https://github.com/gfx-rs/wgpu-rs). Steps: 1. I copied their [hello-triangle](https://github.com/gfx-rs/wgpu-rs/tree/master/examples/hello-triangle) example. Works fine. 2. I added rusty_v8 to my Cargo.toml. Things...
I'm compiling javascript expression that resolves to function using the regular `Script::compile` and then run it. Most of the times it works as expected, no error is thrown But sometimes...
I'd love to be able to define property interceptors on objects. I'm more than happy to write the implementation if it's something y'all want to merge. However, I haven't had...
from @syg in #node-dev > you want want to cherry-pick https://chromium-review.googlesource.com/c/v8/v8/+/2414786 to the release that turns on TLA. there was a bug that leaks the module records of any async...
Related to #373 The curl option is there if people want to use the static binary but not use python. This is great. I also saw the comment about moving...
See commit in my fork for my personal fix: https://github.com/Protryon/rusty_v8/commit/0a4b6f2a1a3585b57be5849809a9e03c550520a2 Issue is that the implied lifetimes for the callback type are distinct, which does not mirror the presumably intended behavior,...
https://github.com/Homebrew/homebrew-core/pull/108838
Currently, when a finalizer callback is registered, it is not guaranteed to be called if there is a global reference to the corresponding object that survives the isolate. This is...
Context slots, which were added in #937, let you store data associated to a context, which will be dropped when the context is GC'd. This would imply that context slots...