aboutsummaryrefslogtreecommitdiffstats
path: root/zone_core/Cargo.toml
blob: aa45cb3cf7a3a61bfce762e11e733a64c5843ace (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.53"
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"
tokio = "1.17.0"
wspty = "0.1.1"

[features]