aboutsummaryrefslogtreecommitdiffstats
path: root/zoned/Cargo.toml
blob: f4dee0d382411ac43ce1f03446828c6c9fa739fd (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
[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.53"
axum = { version = "0.4.8", features = ["json", "ws", "headers", "http2"] }
bytes = "1.1.0"
figment = { version = "0.10.6", features = ["toml", "env", "test"] }
futures = "0.3.21"
serde = "1.0.136"
serde_json = "1.0.79"
thiserror = "1.0.30"
tokio = { version = "1.17.0", features = ["full"] }
tracing = "0.1.31"
tracing-subscriber = "0.3.9"
wspty = "0.1.1"
zone_core = { version = "0.1.0", path = "../zone_core" }
zone_nspawn = { version = "0.1.0", path = "../zone_nspawn" }
zone_zfs = { version = "0.1.0", path = "../zone_zfs", features = ["chrono"] }