aboutsummaryrefslogtreecommitdiffstats
path: root/zoned/Cargo.toml
blob: e15e2178e3825ef738a58d55f99003b2ec976ec9 (plain)
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 = "zoned"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = [
    "Neil Kollack <nkollack@gmail.com>",
    "Toby Vincent <tobyv13@gmail.com>",
]
description = "A lightweight container management system"
categories = ["HTTP server", "WebSocket"]
keywords = ["zone", "zoned", "container", "containers", "websocket"]
workspace = ".."

[dependencies]
anyhow = "1.0.65"
axum = { version = "0.5.16", features = ["json", "ws", "headers", "http2"] }
bytes = "1.2.1"
figment = { version = "0.10.7", features = ["toml", "env", "test"] }
futures = "0.3.24"
serde = "1.0.145"
serde_json = "1.0.85"
thiserror = "1.0.36"
tokio = { version = "1.21.1", features = ["full"] }
tracing = "0.1.36"
tracing-subscriber = "0.3.15"
wspty = "0.1.1"
zone_core = { path = "../zone_core" }
zone_nspawn = { path = "../zone_nspawn" }
zone_zfs = { path = "../zone_zfs" }
zone_overlay = { path = "../zone_overlay" }