mirror of
https://git.proxmox.com/git/proxmox-perl-rs
synced 2025-05-30 22:21:30 +00:00
pmg: bump acme-rs to 0.5
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
4c54abcea8
commit
5ac44c9fbb
@ -32,7 +32,7 @@ url = "2"
|
|||||||
|
|
||||||
perlmod = { version = "0.13.4", features = [ "exporter" ] }
|
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-apt = "0.10"
|
||||||
proxmox-http = { version = "0.9", features = ["client-sync", "client-trait"] }
|
proxmox-http = { version = "0.9", features = ["client-sync", "client-trait"] }
|
||||||
proxmox-http-error = "0.1.0"
|
proxmox-http-error = "0.1.0"
|
||||||
|
@ -9,8 +9,8 @@ use std::os::unix::fs::OpenOptionsExt;
|
|||||||
use anyhow::{format_err, Error};
|
use anyhow::{format_err, Error};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use proxmox_acme_rs::account::AccountData as AcmeAccountData;
|
use proxmox_acme::account::AccountData as AcmeAccountData;
|
||||||
use proxmox_acme_rs::{Account, Client};
|
use proxmox_acme::{Account, Client};
|
||||||
|
|
||||||
/// Our on-disk format inherited from PVE's proxmox-acme code.
|
/// Our on-disk format inherited from PVE's proxmox-acme code.
|
||||||
#[derive(Deserialize, Serialize)]
|
#[derive(Deserialize, Serialize)]
|
||||||
@ -188,9 +188,9 @@ pub mod export {
|
|||||||
use serde_bytes::{ByteBuf, Bytes};
|
use serde_bytes::{ByteBuf, Bytes};
|
||||||
|
|
||||||
use perlmod::Value;
|
use perlmod::Value;
|
||||||
use proxmox_acme_rs::directory::Meta;
|
use proxmox_acme::directory::Meta;
|
||||||
use proxmox_acme_rs::order::OrderData;
|
use proxmox_acme::order::OrderData;
|
||||||
use proxmox_acme_rs::{Authorization, Challenge, Order};
|
use proxmox_acme::{Authorization, Challenge, Order};
|
||||||
|
|
||||||
use super::{AccountData, Inner};
|
use super::{AccountData, Inner};
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ pub mod export {
|
|||||||
use anyhow::Error;
|
use anyhow::Error;
|
||||||
use serde_bytes::ByteBuf;
|
use serde_bytes::ByteBuf;
|
||||||
|
|
||||||
use proxmox_acme_rs::util::Csr;
|
use proxmox_acme::util::Csr;
|
||||||
|
|
||||||
/// Generates a CSR and its accompanying private key.
|
/// Generates a CSR and its accompanying private key.
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user