aboutsummaryrefslogtreecommitdiffstats
path: root/zone_zfs/Cargo.toml
blob: 66c710fbbe4e6714bc18be4f75330d23beea062e (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
[package]
name = "zone_zfs"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = [
    "Neil Kollack <nkollack@gmail.com>",
    "Toby Vincent <tobyv13@gmail.com>",
]
description = "ZFS storage driver for zoned"
categories = ["filesystem", "Unix APIs"]
keywords = ["zone", "zoned", "zfs"]
workspace = ".."

[dependencies]
byte-unit = { version = "4.0.14", features = [
    "serde",
], default-features = false }
derive_builder = "0.11.2"
figment = { version = "0.10.7", features = ["toml", "env"] }
serde = { version = "1.0.145", features = ["derive"] }
thiserror = "1.0.36"
tracing = "0.1.36"
zone_core = { path = "../zone_core" }

[dev-dependencies]
figment = { version = "*", features = ["test"] }
which = "4.3.0"