0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-12 16:59:32 -05:00
This commit is contained in:
Bartek Iwańczuk 2024-07-06 02:26:17 +02:00
parent 747338662a
commit 5a3dc3410d
No known key found for this signature in database
GPG key ID: 0C6BCDDC3B3AD750
3 changed files with 5 additions and 7 deletions

5
Cargo.lock generated
View file

@ -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",

View file

@ -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

View file

@ -366,10 +366,7 @@ function enableJupyter() {
break;
}
msgCallback?.({
...data,
buffers,
});
msgCallback?.(data, buffers);
}
})();