aboutsummaryrefslogtreecommitdiffstats
path: root/zone_core/Cargo.toml
blob: a4e2072238110ea4ceda9aec597a322443419ad4 (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
[package]
name = "zone_core"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = [
    "Neil Kollack <nkollack@gmail.com>",
    "Toby Vincent <tobyv13@gmail.com>",
]
description = "Core types and traits for zone"
keywords = ["zone", "zoned"]
workspace = ".."

[dependencies]
clap = { version = "3.1.9", default-features = false, features = ["std", "derive"] }
derive_builder = "0.10.2"
serde = "1.0.136"
strum = "0.23.0"
strum_macros = "0.23.1"
tabled = "0.6.1"
thiserror = "1.0.30"
zone_nspawn = { version = "0.1.0", path = "../zone_nspawn" }
zone_zfs = { version = "0.1.0", path = "../zone_zfs" }

[features]