proxmox/proxmox-product-config/Cargo.toml
Dietmar Maurer 96a3656dd2 product-config: add feature "impl"
So the we can use the ConfigDigest with our UI crates.

Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
2024-05-06 13:40:32 +02:00

26 lines
731 B
TOML

[package]
name = "proxmox-product-config"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Configuration file handling for Proxmox products."
exclude.workspace = true
[dependencies]
anyhow.workspace = true
hex.workspace = true
log = { workspace = true, optional = true }
nix = { workspace = true, optional = true }
openssl = { workspace = true, optional = true }
serde.workspace = true
serde_plain.workspace = true
proxmox-sys = { workspace = true, optional = true, features = ["timer"] }
proxmox-schema = { workspace = true, features = ["api-types"] }
[features]
default = []
impl = ["dep:log", "dep:nix", "dep:openssl", "dep:proxmox-sys"]