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.
This commit is contained in:
Kyle Kelley 2024-11-14 02:43:41 -08:00 committed by GitHub
parent 15fae19748
commit cb107a762f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 3 deletions

18
Cargo.lock generated
View File

@ -4160,6 +4160,19 @@ dependencies = [
"winapi",
]
[[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"
@ -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",

View File

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