2024-03-20 11:59:23 +03:00
[ package ]
name = "proxmox-acme-api"
2024-07-11 15:48:07 +03:00
version = "0.1.3"
2024-03-20 11:59:23 +03:00
authors . workspace = true
edition . workspace = true
license . workspace = true
repository . workspace = true
exclude . workspace = true
description = "ACME API implementation"
[ dependencies ]
anyhow . workspace = true
base64 = { workspace = true , optional = true }
futures = { workspace = true , optional = true }
2024-07-11 13:59:33 +03:00
hex = { workspace = true , optional = true }
2024-03-20 11:59:23 +03:00
http = { workspace = true , optional = true }
2024-07-11 13:59:33 +03:00
hyper = { workspace = true , optional = true }
lazy_static = { workspace = true , optional = true }
2024-03-20 11:59:23 +03:00
log = { workspace = true , optional = true }
nix = { workspace = true , optional = true }
2024-07-11 13:59:33 +03:00
serde = { workspace = true , features = [ "derive" ] }
serde_json = { workspace = true }
tokio = { workspace = true , optional = true , features = [ "fs" ] }
2024-06-06 14:42:47 +03:00
2024-07-11 13:59:33 +03:00
foreign-types = { workspace = true , optional = true }
2024-06-06 14:42:47 +03:00
libc = { workspace = true , optional = true }
2024-06-06 13:38:03 +03:00
openssl = { workspace = true , optional = true }
2024-07-11 13:59:33 +03:00
proxmox-acme = { workspace = true , features = [ "api-types" ] }
proxmox-config-digest = { workspace = true , optional = true }
proxmox-log = { workspace = true , optional = true }
proxmox-product-config = { workspace = true , optional = true }
2024-03-20 11:59:23 +03:00
proxmox-rest-server = { workspace = true , optional = true }
proxmox-router = { workspace = true , optional = true }
proxmox-schema = { workspace = true , features = [ "api-macro" , "api-types" ] }
2024-07-11 13:59:33 +03:00
proxmox-section-config = { workspace = true , optional = true }
proxmox-serde . workspace = true
proxmox-sys = { workspace = true , optional = true }
2024-06-06 14:42:47 +03:00
proxmox-time = { workspace = true , optional = true }
2024-07-11 13:59:33 +03:00
proxmox-uuid = { workspace = true , optional = true }
2024-03-20 11:59:23 +03:00
[ features ]
2024-05-31 13:19:10 +03:00
default = [ ]
2024-03-20 11:59:23 +03:00
impl = [
2024-07-11 13:59:33 +03:00
"dep:base64" ,
"dep:foreign-types" ,
"dep:futures" ,
2024-06-06 14:42:47 +03:00
"dep:hex" ,
2024-07-11 13:59:33 +03:00
"dep:http" ,
"dep:hyper" ,
2024-03-20 11:59:23 +03:00
"dep:lazy_static" ,
2024-07-11 13:59:33 +03:00
"dep:libc" ,
2024-03-20 11:59:23 +03:00
"dep:log" ,
"dep:nix" ,
2024-07-11 13:59:33 +03:00
"dep:openssl" ,
2024-03-20 11:59:23 +03:00
"dep:tokio" ,
2024-07-11 13:59:33 +03:00
"dep:proxmox-config-digest" ,
"dep:proxmox-log" ,
"dep:proxmox-product-config" ,
2024-03-20 11:59:23 +03:00
"dep:proxmox-rest-server" ,
"dep:proxmox-router" ,
2024-07-11 13:59:33 +03:00
"dep:proxmox-section-config" ,
"dep:proxmox-sys" ,
"dep:proxmox-time" ,
"dep:proxmox-uuid" ,
"proxmox-acme/async-client" ,
"proxmox-acme/impl" ,
"proxmox-config-digest?/openssl" ,
2024-03-20 11:59:23 +03:00
]