proxmox-backup/pbs-config/Cargo.toml
Fabian Grünbichler cb33ed9ca5 workspace: inherit metadata
pbs-buildcfg is the only one that needs to inherit the version as well, since
it stores it in the compiled crate.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
2022-12-12 09:05:27 +01:00

33 lines
805 B
TOML

[package]
name = "pbs-config"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
description = "Configuration file management for PBS"
[dependencies]
anyhow = "1.0"
hex = "0.4.3"
lazy_static = "1.4"
libc = "0.2"
nix = "0.24"
once_cell = "1.3.1"
openssl = "0.10"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
proxmox-lang = "1.1"
proxmox-router = { version = "1.3.0", default-features = false }
proxmox-schema = "1.3.1"
proxmox-section-config = "1"
proxmox-time = "1"
proxmox-serde = "0.1"
proxmox-shared-memory = "0.2"
proxmox-sys = { version = "0.4.1", features = [ "acl", "crypt", "timer" ] }
proxmox-metrics = "0.2"
pbs-api-types = { path = "../pbs-api-types" }
pbs-buildcfg = { path = "../pbs-buildcfg" }
pbs-tools = { path = "../pbs-tools" }