rusty_v8 icon indicating copy to clipboard operation
rusty_v8 copied to clipboard

Rust bindings for the V8 JavaScript engine

Results 167 rusty_v8 issues
Sort by recently updated
recently updated
newest added
trafficstars

Following the trail of #970 and #860 I am attempting to make an android build from an m2 mac on the latest `main` branch (6dd892b111f6dd202bf41c4ea9051e6f3301c9ce). ```bash $ docker login Login...

Building on FreeBSD crashes in build.rs within `fn platform()`, and adding FreeBSD to the list only leads to other errors. It seems however that there are patches already in the...

Hi, I'm trying to compile v8 from source using v.49 version of rusty. After compilation, test failed due to : https://github.com/denoland/rusty_v8/blob/v0.49.0/tests/test_api.rs#L31 ``` Compiling v8 v0.49.0 (/tmp/guix-build-rust-v8-0.49.0.drv-0/v8-0.49.0) error: couldn't read tests/../third_party/icu/common/icudtl.dat:...

I observe that when attempting to use multiple isolates from a single thread, I get frequent segfaults. Here is the LLDB output: ``` stop reason = signal SIGSEGV: invalid address...

We don't support some of the options here: https://github.com/denoland/v8/blob/db2b8439ec4d3ae972330cc2e9830ccd517d7235/include/v8-context.h#L88-L94 I'm mostly interested in the `MicrotaskQueue` argument. Needed for `node:vm` polyfills.

enhancement

After reading https://v8.dev/blog/sandbox, I wonder whether you plan to enable the sandbox feature anytime soon? > The V8 Sandbox is a new security mechanism designed to prevent memory corruption in...

Patches from FreeBSD port tree been modified to fit current state of repository and were applied. Source of original patch files https://github.com/freebsd/freebsd-ports/tree/main/www/deno/files Subset of patches used: patch-cargo-crates_v8_*

It appears to cause issues w/GC on objects in other tests, but it's not clear what's happening. ``` AddressSanitizer:DEADLYSIGNAL ================================================================= ==74371==ERROR: AddressSanitizer: BUS on unknown address (pc 0x0001037307a8 bp 0x00016dfde370...

Reproduce code (`rusty_v8 v0.91.1`): ```rust use v8; const DENO: v8::OneByteConst = v8::String::create_external_onebyte_const("Deno".as_bytes()); fn main() { println!("main()"); // init v8 let platform = v8::new_default_platform(0, false).make_shared(); v8::V8::initialize_platform(platform); v8::V8::initialize(); // create isolate and...

bug