runtimelib/
lib.rs

1#![doc = include_str!("../README.md")]
2
3#[deprecated(
4    since = "0.24.0",
5    note = "This re-export will be removed in a future version. Please use jupyter_protocol::media directly."
6)]
7#[doc(hidden)]
8pub use jupyter_protocol::media;
9
10#[deprecated(
11    since = "0.24.0",
12    note = "This re-export will be removed in a future version. Please use jupyter_protocol::media directly."
13)]
14#[doc(hidden)]
15pub use jupyter_protocol::media::*;
16
17#[deprecated(
18    since = "0.24.0",
19    note = "This re-export will be removed in a future version. Please use jupyter_protocol::media directly."
20)]
21#[doc(hidden)]
22pub use jupyter_protocol::ExecutionCount;
23
24pub mod kernelspec;
25pub use kernelspec::*;
26
27pub mod dirs;
28pub use dirs::*;
29
30#[cfg(any(feature = "tokio-runtime", feature = "async-dispatcher-runtime"))]
31pub mod connection;
32#[cfg(any(feature = "tokio-runtime", feature = "async-dispatcher-runtime"))]
33pub use connection::*;