]> git.proxmox.com Git - proxmox.git/blob - proxmox-notify/Cargo.toml
bump proxmox-notify to 0.3.3-1
[proxmox.git] / proxmox-notify / Cargo.toml
1 [package]
2 name = "proxmox-notify"
3 version = "0.3.3"
4 authors.workspace = true
5 edition.workspace = true
6 license.workspace = true
7 repository.workspace = true
8 exclude.workspace = true
9
10 [dependencies]
11 anyhow.workspace = true
12 const_format.workspace = true
13 handlebars = { workspace = true }
14 lazy_static.workspace = true
15 lettre = { workspace = true, optional = true }
16 log.workspace = true
17 mail-parser = { workspace = true, optional = true }
18 openssl.workspace = true
19 regex.workspace = true
20 serde = { workspace = true, features = ["derive"]}
21 serde_json.workspace = true
22
23 proxmox-http = { workspace = true, features = ["client-sync"], optional = true }
24 proxmox-http-error.workspace = true
25 proxmox-human-byte.workspace = true
26 proxmox-schema = { workspace = true, features = ["api-macro", "api-types"]}
27 proxmox-section-config = { workspace = true }
28 proxmox-serde.workspace = true
29 proxmox-sys = { workspace = true, optional = true }
30 proxmox-time.workspace = true
31
32 [features]
33 default = ["sendmail", "gotify", "smtp"]
34 mail-forwarder = ["dep:mail-parser"]
35 sendmail = ["dep:proxmox-sys"]
36 gotify = ["dep:proxmox-http"]
37 pve-context = ["dep:proxmox-sys"]
38 pbs-context = ["dep:proxmox-sys"]
39 smtp = ["dep:lettre"]