]> git.proxmox.com Git - proxmox-backup.git/commitdiff
fixup build with new acme crate
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Mon, 27 May 2024 08:53:46 +0000 (10:53 +0200)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Mon, 27 May 2024 08:54:03 +0000 (10:54 +0200)
We missed an API break in the acme crate versioning...

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
src/acme/client.rs
src/api2/config/acme.rs

index 96cee0fe0f92f362b75f6e6901a9ab710de7f2fa..d28ab3eb14578be5f36adbacb1859ba15452ed93 100644 (file)
@@ -11,8 +11,8 @@ use nix::sys::stat::Mode;
 use serde::{Deserialize, Serialize};
 
 use proxmox_acme::account::AccountCreator;
-use proxmox_acme::account::AccountData as AcmeAccountData;
 use proxmox_acme::order::{Order, OrderData};
+use proxmox_acme::types::AccountData as AcmeAccountData;
 use proxmox_acme::Request as AcmeRequest;
 use proxmox_acme::{Account, Authorization, Challenge, Directory, Error, ErrorResponse};
 use proxmox_http::client::Client;
index 4fa276f6cad38f8acc05982a27b4454d8368ebef..0b6acc5053ab97548334f3fe12468e504a1f1eed 100644 (file)
@@ -16,7 +16,7 @@ use proxmox_router::{
 use proxmox_schema::{api, param_bail};
 use proxmox_sys::{task_log, task_warn};
 
-use proxmox_acme::account::AccountData as AcmeAccountData;
+use proxmox_acme::types::AccountData as AcmeAccountData;
 use proxmox_acme::Account;
 
 use pbs_api_types::{Authid, PRIV_SYS_MODIFY};