forked from Proxmox/proxmox
96a3656dd2
So the we can use the ConfigDigest with our UI crates. Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
26 lines
731 B
TOML
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"]
|