From 5a3dc3410d4da5807c5d1bad98e28b36d65da6a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sat, 6 Jul 2024 02:26:17 +0200 Subject: [PATCH] update --- Cargo.lock | 5 +++-- cli/Cargo.toml | 2 +- cli/js/40_jupyter.js | 5 +---- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b1aebebc8f..6b84cc65e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5434,8 +5434,9 @@ dependencies = [ [[package]] name = "runtimelib" -version = "0.12.0" -source = "git+https://github.com/runtimed/runtimed.git?branch=comm-id-public#799d9840fa524001874c35a127ab4e6b6dea2364" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b49e5dcc04df0bac7762a7130e181d18bca309c9a21002a617a8656eedbb4e0" dependencies = [ "anyhow", "base64 0.22.1", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index d177caadbb..727206b170 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -110,7 +110,7 @@ glob = "0.3.1" import_map = { version = "=0.20.0", features = ["ext"] } indexmap.workspace = true jsonc-parser.workspace = true -jupyter_runtime = { package = "runtimelib", git = "https://github.com/runtimed/runtimed.git", branch = "comm-id-public" } +jupyter_runtime = { package = "runtimelib", version = "0.13.0" } lazy-regex.workspace = true libc.workspace = true libz-sys.workspace = true diff --git a/cli/js/40_jupyter.js b/cli/js/40_jupyter.js index 122229fdcb..0e0db865ba 100644 --- a/cli/js/40_jupyter.js +++ b/cli/js/40_jupyter.js @@ -366,10 +366,7 @@ function enableJupyter() { break; } - msgCallback?.({ - ...data, - buffers, - }); + msgCallback?.(data, buffers); } })();