From bf0760411336ce5ebb1c103f766c8154af478414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sat, 16 Sep 2023 02:42:09 +0200 Subject: feat: Add "deno jupyter" subcommand (#20337) This commit adds "deno jupyter" subcommand which provides a Deno kernel for Jupyter notebooks. The implementation is mostly based on Deno's REPL and reuses large parts of it (though there's some clean up that needs to happen in follow up PRs). Not all functionality of Jupyter kernel is implemented and some message type are still not implemented (eg. "inspect_request") but the kernel is fully working and provides all the capatibilities that the Deno REPL has; including TypeScript transpilation and npm packages support. Closes https://github.com/denoland/deno/issues/13016 --------- Co-authored-by: Adam Powers Co-authored-by: Kyle Kelley --- ext/node/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml index 44b56978e..35d8a2de5 100644 --- a/ext/node/Cargo.toml +++ b/ext/node/Cargo.toml @@ -19,7 +19,7 @@ aes.workspace = true brotli.workspace = true bytes.workspace = true cbc.workspace = true -data-encoding = "2.3.3" +data-encoding.workspace = true deno_core.workspace = true deno_fetch.workspace = true deno_fs.workspace = true -- cgit v1.2.3