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

* std::is_pod is deprecated in c++20 changed to std::is_standard_layout && std::is_trivial * V shoud be trivially_copyable in order to copy from

Windows don't have `python3`

This enables at least the development (V8_FROM_SOURCE) on iOS.

Build command: ``` V8_FROM_SOURCE=1 cargo build -vv --release --target aarch64-linux-android ``` got error: ``` [v8 0.74.1] The current directory is /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/v8-0.74.1 [v8 0.74.1] gn gen --root=/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/v8-0.74.1 /home/runner/work/v8-src/v8-src/target/aarch64-linux-android/release/gn_out [v8 0.74.1] android/icudtl.dat...

We need to modify `build.rs` to build for `x86_64-linux-android`: ```patch diff '--color=auto' -ru -x Cargo.lock workdir-1/v8-0.75.0/build.rs workdir/v8-0.75.0/build.rs --- workdir-1/v8-0.75.0/build.rs 2023-08-21 13:43:23.899828209 +0800 +++ workdir/v8-0.75.0/build.rs 2023-08-22 15:10:35.935818835 +0800 @@ -145,7 +145,7...

We are likely going to need to create a custom v8::Platform in the long term, so getting a start on this is going to be important. We prototyped mapping C++...

enhancement

This issue is more of a question / feature request than anything. I'm looking at how external strings are handled currently - static only, which is a limitation. There is...

This is my configurations: ```➜ rusty_v8 git:(main) ✗ rustc --print=cfg debug_assertions panic="unwind" target_arch="x86_64" target_endian="little" target_env="gnu" target_family="unix" target_feature="fxsr" target_feature="sse" target_feature="sse2" target_has_atomic="16" target_has_atomic="32" target_has_atomic="64" target_has_atomic="8" target_has_atomic="ptr" target_os="linux" target_pointer_width="64" target_vendor="unknown" unix ``` And...

We want to be inline with what default chrome configurations are using to reduce technical debt https://github.com/denoland/rusty_v8/blob/ca83ce53bad172cd1b5f1fcfbe18cb936cbb3b7f/.gn#L48-L52 Problem: there are two snapshots in deno, the main runtime one, and the...

enhancement

Hello, I am using this crate as part of deno_core, alongside surrealdb. This project and surrealdb's rocksdb are the cpp based dependencies here. When I try to run a very...