2021-09-02 10:47:11 +00:00
|
|
|
[package]
|
|
|
|
name = "pbs-config"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Proxmox Support Team <support@proxmox.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "Configuration file management for PBS"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-09-08 10:22:48 +00:00
|
|
|
libc = "0.2"
|
2021-09-02 10:47:11 +00:00
|
|
|
anyhow = "1.0"
|
|
|
|
lazy_static = "1.4"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-09-07 07:22:14 +00:00
|
|
|
serde_json = "1.0"
|
2021-09-02 10:47:11 +00:00
|
|
|
openssl = "0.10"
|
|
|
|
nix = "0.19.1"
|
2021-09-08 10:22:48 +00:00
|
|
|
regex = "1.2"
|
2021-09-10 04:53:53 +00:00
|
|
|
once_cell = "1.3.1"
|
2021-09-02 10:47:11 +00:00
|
|
|
|
2021-09-28 08:11:56 +00:00
|
|
|
proxmox = { version = "0.13.5", default-features = false, features = [ "cli" ] }
|
2021-09-02 10:47:11 +00:00
|
|
|
|
|
|
|
pbs-api-types = { path = "../pbs-api-types" }
|
|
|
|
pbs-buildcfg = { path = "../pbs-buildcfg" }
|
|
|
|
pbs-tools = { path = "../pbs-tools" }
|