diff options
author | Kyle Kelley <rgbkrk@gmail.com> | 2024-05-29 15:46:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 22:46:47 +0000 |
commit | cf611fbf548ea0bbd38c82ab02249b7a2aa3b3c9 (patch) | |
tree | 9496fd5f9ba9ada84bfcef29a919801a8df03517 /cli/tools/jupyter/install.rs | |
parent | 3d3722507e1964cba66161e3e2e7b538bc23f29c (diff) |
chore: upgrade jupyter runtimelib to 0.11.0 (#24036)
Brings in:
* More fully typed structures (for when we get to implementing more)
* `with_metadata`, `with_buffers`, etc. from
https://github.com/runtimed/runtimed/pull/99
---------
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tools/jupyter/install.rs')
-rw-r--r-- | cli/tools/jupyter/install.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/jupyter/install.rs b/cli/tools/jupyter/install.rs index 40f21d3c1..b0ddc948d 100644 --- a/cli/tools/jupyter/install.rs +++ b/cli/tools/jupyter/install.rs @@ -7,7 +7,7 @@ use std::env::current_exe; use std::io::Write; use std::path::Path; -use runtimelib::dirs::user_data_dir; +use jupyter_runtime::dirs::user_data_dir; const DENO_ICON_32: &[u8] = include_bytes!("./resources/deno-logo-32x32.png"); const DENO_ICON_64: &[u8] = include_bytes!("./resources/deno-logo-64x64.png"); |