summaryrefslogtreecommitdiff
path: root/cli/tools/jupyter/mod.rs
diff options
context:
space:
mode:
authorKyle Kelley <rgbkrk@gmail.com>2024-05-29 15:46:47 -0700
committerGitHub <noreply@github.com>2024-05-29 22:46:47 +0000
commitcf611fbf548ea0bbd38c82ab02249b7a2aa3b3c9 (patch)
tree9496fd5f9ba9ada84bfcef29a919801a8df03517 /cli/tools/jupyter/mod.rs
parent3d3722507e1964cba66161e3e2e7b538bc23f29c (diff)
chore: upgrade jupyter runtimelib to 0.11.0 (#24036)
Brings in: * More fully typed structures (for when we get to implementing more) * `with_metadata`, `with_buffers`, etc. from https://github.com/runtimed/runtimed/pull/99 --------- Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tools/jupyter/mod.rs')
-rw-r--r--cli/tools/jupyter/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tools/jupyter/mod.rs b/cli/tools/jupyter/mod.rs
index a4d0bb27d..4b5009ba7 100644
--- a/cli/tools/jupyter/mod.rs
+++ b/cli/tools/jupyter/mod.rs
@@ -23,8 +23,8 @@ use deno_runtime::permissions::PermissionsContainer;
use deno_runtime::WorkerExecutionMode;
use deno_terminal::colors;
-use runtimelib::jupyter::ConnectionInfo;
-use runtimelib::messaging::StreamContent;
+use jupyter_runtime::jupyter::ConnectionInfo;
+use jupyter_runtime::messaging::StreamContent;
use tokio::sync::mpsc;
use tokio::sync::mpsc::UnboundedSender;