fixup build with new acme crate

We missed an API break in the acme crate versioning...

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2024-05-27 10:53:46 +02:00
parent 8c0bbc0d97
commit 83e748baf5
2 changed files with 2 additions and 2 deletions

View 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;

View 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};