pmg: bump acme-rs to 0.5

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2023-12-04 10:26:42 +01:00
parent 4c54abcea8
commit 5ac44c9fbb
3 changed files with 7 additions and 7 deletions

View File

@ -32,7 +32,7 @@ url = "2"
perlmod = { version = "0.13.4", features = [ "exporter" ] }
proxmox-acme-rs = { version = "0.4", features = ["client"] }
proxmox-acme = { version = "0.5", features = ["client"] }
proxmox-apt = "0.10"
proxmox-http = { version = "0.9", features = ["client-sync", "client-trait"] }
proxmox-http-error = "0.1.0"

View File

@ -9,8 +9,8 @@ use std::os::unix::fs::OpenOptionsExt;
use anyhow::{format_err, Error};
use serde::{Deserialize, Serialize};
use proxmox_acme_rs::account::AccountData as AcmeAccountData;
use proxmox_acme_rs::{Account, Client};
use proxmox_acme::account::AccountData as AcmeAccountData;
use proxmox_acme::{Account, Client};
/// Our on-disk format inherited from PVE's proxmox-acme code.
#[derive(Deserialize, Serialize)]
@ -188,9 +188,9 @@ pub mod export {
use serde_bytes::{ByteBuf, Bytes};
use perlmod::Value;
use proxmox_acme_rs::directory::Meta;
use proxmox_acme_rs::order::OrderData;
use proxmox_acme_rs::{Authorization, Challenge, Order};
use proxmox_acme::directory::Meta;
use proxmox_acme::order::OrderData;
use proxmox_acme::{Authorization, Challenge, Order};
use super::{AccountData, Inner};

View File

@ -5,7 +5,7 @@ pub mod export {
use anyhow::Error;
use serde_bytes::ByteBuf;
use proxmox_acme_rs::util::Csr;
use proxmox_acme::util::Csr;
/// Generates a CSR and its accompanying private key.
///