diff options
author | Kyle Kelley <rgbkrk@gmail.com> | 2024-11-14 02:43:41 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-14 11:43:41 +0100 |
commit | cb107a762fb903973e0d0c2e4481baf2c0bc13b8 (patch) | |
tree | fce8bc0ed1e3a0d84ff771285be8c8e0a6bb1beb /Cargo.lock | |
parent | 15fae197482a9ac84e0227200ef8f4d0d4e4bd33 (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.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 18 |
1 files changed, 16 insertions, 2 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", |