2022-06-21 14:49:14 +03:00
[ package ]
name = "proxmox-subscription"
2024-09-20 09:42:25 +03:00
description = "Proxmox subscription utilitites"
2024-11-07 14:56:48 +03:00
version = "0.5.0"
2024-09-20 09:42:25 +03:00
2022-12-06 14:18:46 +03:00
authors . workspace = true
edition . workspace = true
2024-09-20 09:42:25 +03:00
exclude . workspace = true
homepage . workspace = true
2022-12-06 14:18:46 +03:00
license . workspace = true
repository . workspace = true
2024-08-14 10:19:53 +03:00
rust-version . workspace = true
2022-06-21 14:49:14 +03:00
[ dependencies ]
2022-12-06 15:43:42 +03:00
anyhow . workspace = true
2024-11-05 17:05:14 +03:00
base64 = { workspace = true , optional = true }
hex = { workspace = true , optional = true }
openssl = { workspace = true , optional = true }
2022-12-12 11:30:30 +03:00
regex . workspace = true
2022-12-06 15:43:42 +03:00
serde . workspace = true
serde_json . workspace = true
2022-06-21 14:49:14 +03:00
2024-11-05 17:05:14 +03:00
proxmox-http = { workspace = true , optional = true , features = [ "client-trait" , "http-helpers" ] }
2022-12-07 10:42:52 +03:00
proxmox-serde . workspace = true
2024-11-05 17:05:14 +03:00
proxmox-sys = { workspace = true , optional = true }
proxmox-time = { workspace = true , optional = true }
2022-06-21 14:49:14 +03:00
2022-12-07 10:42:52 +03:00
proxmox-schema = { workspace = true , features = [ "api-macro" ] , optional = true }
2022-06-21 14:49:14 +03:00
[ features ]
2024-11-05 17:05:14 +03:00
default = [ "impl" ]
impl = [ "dep:base64" , "dep:hex" , "dep:openssl" , "dep:proxmox-http" , "dep:proxmox-sys" , "dep:proxmox-time" ]
2022-08-22 12:24:04 +03:00
api-types = [ "dep:proxmox-schema" ]