2024-03-20 11:59:23 +03:00
[ package ]
name = "proxmox-acme-api"
2024-05-17 13:10:13 +03:00
version = "0.1.0"
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
serde = { workspace = true , features = [ "derive" ] }
serde_json = { workspace = true }
base64 = { workspace = true , optional = true }
tokio = { workspace = true , optional = true , features = [ "fs" ] }
hyper = { workspace = true , optional = true }
futures = { workspace = true , optional = true }
http = { workspace = true , optional = true }
log = { workspace = true , optional = true }
nix = { workspace = true , optional = true }
lazy_static = { workspace = true , optional = true }
2024-05-29 19:40:11 +03:00
2024-03-20 11:59:23 +03:00
proxmox-serde = { workspace = true , optional = true }
proxmox-section-config = { workspace = true , optional = true }
proxmox-rest-server = { workspace = true , optional = true }
proxmox-router = { workspace = true , optional = true }
proxmox-sys = { workspace = true , optional = true }
proxmox-schema = { workspace = true , features = [ "api-macro" , "api-types" ] }
proxmox-acme = { workspace = true , optional = true , features = [ "api-types" ] }
2024-05-29 19:40:11 +03:00
proxmox-config-digest = { workspace = true , optional = true }
2024-05-17 12:52:57 +03:00
proxmox-product-config = { workspace = true , optional = true }
2024-03-20 11:59:23 +03:00
[ features ]
default = [ "api-types" ]
api-types = [ "dep:proxmox-acme" , "dep:proxmox-serde" ]
impl = [
"api-types" ,
2024-05-29 19:40:11 +03:00
"dep:proxmox-config-digest" ,
"proxmox-config-digest?/openssl" ,
2024-05-17 12:52:57 +03:00
"dep:proxmox-product-config" ,
2024-03-20 11:59:23 +03:00
"dep:proxmox-acme" ,
"proxmox-acme?/impl" ,
"proxmox-acme?/async-client" ,
"dep:proxmox-section-config" ,
2024-05-29 19:40:11 +03:00
#"dep:openssl",
2024-03-20 11:59:23 +03:00
"dep:lazy_static" ,
"dep:log" ,
"dep:nix" ,
"dep:tokio" ,
"dep:futures" ,
"dep:http" ,
"dep:hyper" ,
"dep:proxmox-sys" ,
"dep:proxmox-rest-server" ,
"dep:proxmox-router" ,
"dep:base64" ,
]