summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Kelley <rgbkrk@gmail.com>2024-11-14 02:43:41 -0800
committerGitHub <noreply@github.com>2024-11-14 11:43:41 +0100
commitcb107a762fb903973e0d0c2e4481baf2c0bc13b8 (patch)
treefce8bc0ed1e3a0d84ff771285be8c8e0a6bb1beb
parent15fae197482a9ac84e0227200ef8f4d0d4e4bd33 (diff)
chore: upgrade runtimelib (jupyter) to 0.19 (#26862)
Upgrades the `runtimelib` crate. Of utility for users and library authors is the support for binary buffers on messages, especially for comms.
-rw-r--r--Cargo.lock18
-rw-r--r--cli/Cargo.toml2
2 files changed, 17 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 8d84073a8..2c25c0de0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -4161,6 +4161,19 @@ dependencies = [
]
[[package]]
+name = "jupyter-serde"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dd71aa17c4fa65e6d7536ab2728881a41f8feb2ee5841c2240516c3c3d65d8b3"
+dependencies = [
+ "anyhow",
+ "serde",
+ "serde_json",
+ "thiserror",
+ "uuid",
+]
+
+[[package]]
name = "k256"
version = "0.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -5965,9 +5978,9 @@ dependencies = [
[[package]]
name = "runtimelib"
-version = "0.14.0"
+version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0c3d817764e3971867351e6103955b17d808f5330e9ef63aaaaab55bf8c664c1"
+checksum = "fe23ba9967355bbb1be2fb9a8e51bd239ffdf9c791fad5a9b765122ee2bde2e4"
dependencies = [
"anyhow",
"base64 0.22.1",
@@ -5977,6 +5990,7 @@ dependencies = [
"dirs",
"futures",
"glob",
+ "jupyter-serde",
"rand",
"ring",
"serde",
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index e98e0ac00..928259a83 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -122,7 +122,7 @@ hyper-util.workspace = true
import_map = { version = "=0.20.1", features = ["ext"] }
indexmap.workspace = true
jsonc-parser = { workspace = true, features = ["cst", "serde"] }
-jupyter_runtime = { package = "runtimelib", version = "=0.14.0" }
+jupyter_runtime = { package = "runtimelib", version = "=0.19.0", features = ["tokio-runtime"] }
lazy-regex.workspace = true
libc.workspace = true
libz-sys.workspace = true