-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 730 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 730 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
25
26
27
[package]
name = "light-containerd"
version = "0.1.0"
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"]
description = "Lightweight OCI container engine"
edition = "2018"
[dependencies]
anyhow = "1.0"
argh = "0.1.4"
dashmap = "3.11.10"
fallible_collections = "0.3.0"
http = "0.2.1"
libc = "0.2.80"
tempfile = "3.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "0.2", features = ["fs", "macros", "net", "process", "rt-core", "signal"] }
tokio-seqpacket = "0.2.1"
tracing = "0.1.22"
tracing-futures = "0.2.4"
tracing-subscriber = "0.2.15"
uuid = { version = "0.8.1", features = ["v4"] }
warp = "0.2.5"
[dev-dependencies]
tokio = { version = "0.2", features = ["full", "test-util"] }