diff --git a/pmg-rs/Cargo.toml b/pmg-rs/Cargo.toml index a87d283..6bf3469 100644 --- a/pmg-rs/Cargo.toml +++ b/pmg-rs/Cargo.toml @@ -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" diff --git a/pmg-rs/src/acme.rs b/pmg-rs/src/acme.rs index b38e1ea..438087b 100644 --- a/pmg-rs/src/acme.rs +++ b/pmg-rs/src/acme.rs @@ -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}; diff --git a/pmg-rs/src/csr.rs b/pmg-rs/src/csr.rs index 84e3c72..3166e00 100644 --- a/pmg-rs/src/csr.rs +++ b/pmg-rs/src/csr.rs @@ -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. ///