aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: a9b2e623dc066201b7cf43dcc77b276307af9a2b (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
32
33
34
35
36
37
38
[workspace]
members = [
    "zone",
    "zone_core",
    "zone_nspawn",
    "zone_overlay",
    "zone_zfs",
    "zoned",
]
default-members = ["zone", "zoned"]

[workspace.package]
version = "0.1.0"
authors = [
    "Neil Kollack <nkollack@gmail.com>",
    "Toby Vincent <tobyv13@gmail.com>",
]
edition = "2021"
description = "A lightweight container management system"
homepage = "https://sr.ht/~tobyvin/zone"
repository = "https://git.sr.ht/~tobyvin/zone"
license = "MIT"
keywords = ["zone", "zoned", "container", "containers", "websocket"]
categories = ["HTTP server", "WebSocket"]

[workspace.dependencies]
zone_core = { path = "zone_core" }
zone_nspawn = { path = "zone_nspawn" }
zone_zfs = { path = "zone_zfs" }
zone_overlay = { path = "zone_overlay" }
anyhow = "1.0.65"
serde = "1.0.145"
serde_json = "1.0.85"
thiserror = "1.0.36"
tokio = "1.21.1"
tracing = "0.1.36"
tracing-subscriber = "0.3.15"
figment = { version = "0.10.7", features = ["toml", "env", "test"] }