-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Embedding deno in other projects #1666
Comments
There is a similar suggestion at #1357 👍 |
Yes, we would like to release a crate - we're almost there but have hit a few snags on the "cargo package" step of the process #1387 You should be able to include deno as a git submodule and use cargo path dependencies: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-path-dependencies |
Yes, at the moment I'm using a submodule pointing to a fork where I added the file Re #1387, I'd like to help with that. Is there anything that you already tried? Any idea on possible solutions? |
@hephex it’s been a few weeks since I looked at it but I’ve got a WIP branch listed in the issue. I believe it was stuck at uploading to crates.io due to size. |
I'm working on a project to create an edge application runtime (similar to fly or Cloudflare's Workers) in Rust, and I couldn't find any good v8 wrapper for Rust.
I appreciate Deno is not meant to be a library and designed to be a standalone TS runtime, but would you be interested in exposing some of its useful primitives (i.e.
deno::isolate::Isolate
) in a Rust library? Obv I'd be happy to help with this if you think it's viable. I've got a naïve implementation of a web app embedding deno, just renamingmain.rs
tolib.rs
.The text was updated successfully, but these errors were encountered: