HomeDisk/types/Cargo.toml

20 lines
435 B
TOML
Raw Normal View History

[package]
name = "homedisk-types"
version = "0.0.0"
edition = "2021"
2022-04-19 13:14:17 +00:00
[features]
2022-04-19 19:10:36 +00:00
config = ["toml", "dirs"]
2022-04-19 13:14:17 +00:00
[dependencies]
thiserror = "1.0.30"
2022-04-20 08:47:28 +00:00
uuid = "1.0.0"
2022-04-21 19:39:44 +00:00
anyhow = "1.0.57"
serde = { version = "1.0.136", features = ["derive"] }
zeroize = { version = "1.5.4", features = ["derive"] }
axum = { version = "0.5.3", optional = true }
2022-04-19 13:14:17 +00:00
2022-04-19 19:10:36 +00:00
# config
toml = { version = "0.5.9", optional = true }
dirs = { version = "4.0.0", optional = true }