aboutsummaryrefslogtreecommitdiffstats
path: root/zone_core/Cargo.toml
blob: 0f794784b7d6164322e0e3ed462156f12f37b53e (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
[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]
async-trait = "0.1.57"
clap = { version = "3.2.22", default-features = false, features = ["std", "derive"] }
derive_builder = "0.11.2"
serde = "1.0.145"
strum = "0.24.1"
strum_macros = "0.24.3"
tabled = "0.8.0"
thiserror = "1.0.36"
tokio = "1.21.1"
wspty = "0.1.1"

[features]