-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (28 loc) · 854 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "kernel-sidecar"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Jupyter Kernel sidecar"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.74"
bytes = { version = "1.5.0", features = ["serde"] }
chrono = { version = "0.4.31", features = ["serde"] }
enum-as-inner = "0.6.0"
hex = "0.4.3"
indoc = "2.0.4"
lazy_static = "1.4.0"
rand = "0.8.5"
ring = "0.17.5"
serde = { version = "1.0.190", features = ["derive"] }
serde_json = "1.0.108"
tokio = { version = "1.33.0", features = ["full", "signal"] }
uuid = { version = "1.5.0", features = ["v4", "serde", "fast-rng"] }
zeromq = "0.3.4"
[features]
# Feature flags for starting different types of Kernels in the test suite
test_ipython = []
test_evcxr = []
test_irkernel = []
test_deno = []