-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 783 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "jupyter-kernel-test"
version = "0.1.0"
edition = "2021"
description = "Jupyter kernel protocol conformance test suite"
license = "BSD-3-Clause"
repository = "https://github.com/runtimed/kernel-testbed"
[[bin]]
name = "jupyter-kernel-test"
path = "src/main.rs"
[dependencies]
jupyter-protocol = { git = "https://github.com/runtimed/runtimed", branch = "main" }
runtimelib = { git = "https://github.com/runtimed/runtimed", branch = "main", features = ["tokio-runtime", "ring"] }
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["clock"] }
uuid = { version = "1", features = ["v4"] }
thiserror = "2"
anyhow = "1"