forked from Proxmox/proxmox
53ff71772f
Copied from proxmox-backup/src/tools/config.rs Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
18 lines
494 B
TOML
18 lines
494 B
TOML
[package]
|
|
name = "proxmox-simple-config"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
exclude.workspace = true
|
|
description = "Simple key/value format for configuration files."
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
serde_json.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
log = { workspace = true, optional = true }
|
|
|
|
proxmox-schema = { workspace = true, features = ["api-macro", "api-types"] }
|