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