proxmox/proxmox-simple-config/Cargo.toml
Dietmar Maurer 53ff71772f simple-config: new crate to read/write proxmox simple text config files
Copied from proxmox-backup/src/tools/config.rs

Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
2024-06-06 10:16:28 +02:00

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"] }