2023-07-20 17:31:30 +03:00
[ package ]
name = "proxmox-notify"
2024-06-20 15:02:10 +03:00
version = "0.4.1"
2023-07-20 17:31:30 +03:00
authors . workspace = true
edition . workspace = true
license . workspace = true
repository . workspace = true
exclude . workspace = true
[ dependencies ]
2023-11-14 15:59:13 +03:00
anyhow . workspace = true
2024-06-24 15:31:29 +03:00
base64 . workspace = true
2024-03-19 12:29:27 +03:00
const_format . workspace = true
2023-07-20 17:31:42 +03:00
handlebars = { workspace = true }
2023-11-14 15:59:20 +03:00
lettre = { workspace = true , optional = true }
2023-07-20 17:31:31 +03:00
log . workspace = true
2023-11-14 15:59:18 +03:00
mail-parser = { workspace = true , optional = true }
2023-07-20 17:31:31 +03:00
openssl . workspace = true
2024-03-19 12:27:25 +03:00
regex . workspace = true
2024-04-19 17:17:09 +03:00
serde = { workspace = true , features = [ "derive" ] }
2024-03-19 12:27:25 +03:00
serde_json . workspace = true
2023-07-20 17:31:36 +03:00
proxmox-http = { workspace = true , features = [ "client-sync" ] , optional = true }
2023-07-26 17:18:23 +03:00
proxmox-http-error . workspace = true
2023-07-20 17:31:42 +03:00
proxmox-human-byte . workspace = true
2024-04-19 17:17:09 +03:00
proxmox-schema = { workspace = true , features = [ "api-macro" , "api-types" ] }
2023-07-20 17:31:31 +03:00
proxmox-section-config = { workspace = true }
2024-03-19 12:27:25 +03:00
proxmox-serde . workspace = true
2023-07-20 17:31:34 +03:00
proxmox-sys = { workspace = true , optional = true }
2023-07-20 17:31:42 +03:00
proxmox-time . workspace = true
2024-04-19 17:17:10 +03:00
proxmox-uuid = { workspace = true , features = [ "serde" ] }
2023-07-20 17:31:34 +03:00
[ features ]
2023-11-14 15:59:20 +03:00
default = [ "sendmail" , "gotify" , "smtp" ]
2024-04-19 17:17:08 +03:00
mail-forwarder = [ "dep:mail-parser" , "dep:proxmox-sys" ]
2023-07-20 17:31:42 +03:00
sendmail = [ "dep:proxmox-sys" ]
2023-07-20 17:31:36 +03:00
gotify = [ "dep:proxmox-http" ]
2023-11-14 15:59:19 +03:00
pve-context = [ "dep:proxmox-sys" ]
pbs-context = [ "dep:proxmox-sys" ]
2023-11-14 15:59:20 +03:00
smtp = [ "dep:lettre" ]