e83269be1d
We need this for queuing notifications on PBS from the unprivileged proxy process. Signed-off-by: Lukas Wagner <l.wagner@proxmox.com> Reviewed-by: Fiona Ebner <f.ebner@proxmox.com>
41 lines
1.2 KiB
TOML
41 lines
1.2 KiB
TOML
[package]
|
|
name = "proxmox-notify"
|
|
version = "0.3.3"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
exclude.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
const_format.workspace = true
|
|
handlebars = { workspace = true }
|
|
lazy_static.workspace = true
|
|
lettre = { workspace = true, optional = true }
|
|
log.workspace = true
|
|
mail-parser = { workspace = true, optional = true }
|
|
openssl.workspace = true
|
|
regex.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
|
|
proxmox-http = { workspace = true, features = ["client-sync"], optional = true }
|
|
proxmox-http-error.workspace = true
|
|
proxmox-human-byte.workspace = true
|
|
proxmox-schema = { workspace = true, features = ["api-macro", "api-types"] }
|
|
proxmox-section-config = { workspace = true }
|
|
proxmox-serde.workspace = true
|
|
proxmox-sys = { workspace = true, optional = true }
|
|
proxmox-time.workspace = true
|
|
proxmox-uuid = { workspace = true, features = ["serde"] }
|
|
|
|
[features]
|
|
default = ["sendmail", "gotify", "smtp"]
|
|
mail-forwarder = ["dep:mail-parser", "dep:proxmox-sys"]
|
|
sendmail = ["dep:proxmox-sys"]
|
|
gotify = ["dep:proxmox-http"]
|
|
pve-context = ["dep:proxmox-sys"]
|
|
pbs-context = ["dep:proxmox-sys"]
|
|
smtp = ["dep:lettre"]
|