fd6d243843
ApiConfig: avoid using pbs_config::backup_user() CommandoSocket: avoid using pbs_config::backup_user() FileLogger: avoid using pbs_config::backup_user() - use atomic_open_or_create_file() Auth Trait: moved definitions to proxmox-rest-server/src/lib.rs - removed CachedUserInfo patrameter - return user as String (not Authid) Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
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.3", default-features = false, features = [ "cli" ] }
|
|
|
|
pbs-api-types = { path = "../pbs-api-types" }
|
|
pbs-buildcfg = { path = "../pbs-buildcfg" }
|
|
pbs-tools = { path = "../pbs-tools" }
|