diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-12-13 19:45:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-13 19:45:53 +0100 |
| commit | 2e74f164b6dcf0ecbf8dd38fba9fae550d784bd0 (patch) | |
| tree | 61abe8e09d5331ace5d9de529f0e2737a8e05dbb /Cargo.lock | |
| parent | 84ef9bd21fb48fb6b5fbc8dafc3de9f361bade3b (diff) | |
refactor: deno_runtime crate (#8640)
This commit moves Deno JS runtime, ops, permissions and
inspector implementation to new "deno_runtime" crate located
in "runtime/" directory.
Details in "runtime/README.md".
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 48 |
1 files changed, 43 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 852c48289..1ed126df5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -460,13 +460,12 @@ dependencies = [ "clap", "crossbeam-channel 0.5.0", "deno_core", - "deno_crypto", "deno_doc", "deno_fetch", "deno_lint", + "deno_runtime", "deno_web", "dissimilar", - "dlopen", "dprint-plugin-typescript", "encoding_rs", "env_logger", @@ -496,7 +495,6 @@ dependencies = [ "swc_bundler", "swc_common", "swc_ecmascript", - "sys-info", "tempfile", "termcolor", "test_util", @@ -506,8 +504,6 @@ dependencies = [ "uuid", "walkdir", "warp", - "webpki", - "webpki-roots", "winapi 0.3.9", "winres", ] @@ -583,6 +579,48 @@ dependencies = [ ] [[package]] +name = "deno_runtime" +version = "0.1.0" +dependencies = [ + "atty", + "deno_core", + "deno_crypto", + "deno_fetch", + "deno_web", + "dlopen", + "encoding_rs", + "env_logger", + "filetime", + "fwdansi", + "http", + "indexmap", + "lazy_static", + "libc", + "log", + "nix", + "notify", + "percent-encoding", + "regex", + "ring", + "rustyline", + "rustyline-derive", + "serde", + "shell-escape", + "sys-info", + "termcolor", + "test_util", + "tokio 0.2.22", + "tokio-rustls", + "tokio-tungstenite", + "uuid", + "warp", + "webpki", + "webpki-roots", + "winapi 0.3.9", + "winres", +] + +[[package]] name = "deno_web" version = "0.21.0" dependencies = [ |
