From 1eb2dd5dacb07e5ccecba7e0746ed9e39e22f305 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Tue, 21 Sep 2021 07:58:40 +0200 Subject: [PATCH] move ApiConfig, FileLogger and CommandoSocket to proxmox-rest-server workspace 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 --- pbs-api-types/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pbs-api-types/Cargo.toml b/pbs-api-types/Cargo.toml index 15507328..02c8c2d4 100644 --- a/pbs-api-types/Cargo.toml +++ b/pbs-api-types/Cargo.toml @@ -14,7 +14,7 @@ openssl = "0.10" regex = "1.2" serde = { version = "1.0", features = ["derive"] } -proxmox = { version = "0.13.0", default-features = false, features = [ "api-macro" ] } +proxmox = { version = "0.13.3", default-features = false, features = [ "api-macro" ] } pbs-systemd = { path = "../pbs-systemd" } pbs-tools = { path = "../pbs-tools" }