Crates.io | runtimelib |
lib.rs | runtimelib |
version | 0.25.0 |
source | src |
created_at | 2024-03-06 00:29:51.179275 |
updated_at | 2025-01-09 21:06:15.08474 |
description | Jupyter runtime library |
homepage | |
repository | https://github.com/runtimed/runtimed |
max_upload_size | |
id | 1164217 |
size | 74,702 |
runtimelib
is a Rust library for interacting with Jupyter kernels natively, over ZeroMQ.
Runtimelib allows you to pick which async runtime you want to use. If you're using tokio, include the tokio-runtime
flag. For async-dispatcher
users (AKA GPUI devs), use async-dispatcher-runtime
. The async dispatcher runtime is also compatible for smol/async-std users.
[dependencies]
runtimelib = { version = "0.24.0", features = ["tokio-runtime"] }
[dependencies]
runtimelib = { version = "0.24.0", features = ["async-dispatcher-runtime"] }
For more detailed information about the API and its usage, please refer to the API documentation.
We welcome contributions to Runtimelib! If you'd like to contribute, please:
Please make sure to update tests as appropriate and adhere to the existing coding style.
Runtimelib is distributed under the terms of both the MIT license and the Apache License (Version 2.0). See LICENSE-APACHE and LICENSE-MIT for details.