denoland / deno_bindgen

Write high-level Deno FFI libraries in Rust.
MIT License
274 stars 28 forks source link

Embedding deno in rust application #141

Closed nearest-river closed 8 months ago

nearest-river commented 8 months ago

Can I embed the whole deno runtime in a rust app?.. not only deno_core which'll need all sorts of configurations like permission passing and things like command line arguments..

NOTE: Making a build tool

littledivy commented 8 months ago

deno_bindgen is for writing FFI plugins, not for embedding Deno into Rust applications. Take a look at deno_runtime https://github.com/denoland/deno/tree/main/runtime

Issues related to embedding should be opened in denoland/deno

nearest-river commented 8 months ago

deno_bindgen is for writing FFI plugins, not for embedding Deno into Rust applications. Take a look at deno_runtime https://github.com/denoland/deno/tree/main/runtime

Issues related to embedding should be opened in denoland/deno

I accidentally issued it in deno_bindgen repo