24 lines
587 B
TOML
24 lines
587 B
TOML
[package]
|
|
name = "pbs-config"
|
|
version = "0.1.0"
|
|
authors = ["Proxmox Support Team <support@proxmox.com>"]
|
|
edition = "2018"
|
|
description = "Configuration file management for PBS"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
anyhow = "1.0"
|
|
lazy_static = "1.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
openssl = "0.10"
|
|
nix = "0.19.1"
|
|
regex = "1.2"
|
|
once_cell = "1.3.1"
|
|
|
|
proxmox = { version = "0.13.4", default-features = false, features = [ "cli" ] }
|
|
|
|
pbs-api-types = { path = "../pbs-api-types" }
|
|
pbs-buildcfg = { path = "../pbs-buildcfg" }
|
|
pbs-tools = { path = "../pbs-tools" }
|