From 686453a28cae2009b96c2dd24ebab59c84560450 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Tue, 19 Mar 2024 10:27:25 +0100 Subject: [PATCH] notify: sort and group dependencies Signed-off-by: Wolfgang Bumiller --- proxmox-notify/Cargo.toml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/proxmox-notify/Cargo.toml b/proxmox-notify/Cargo.toml index 53e7d17e..0a5be005 100644 --- a/proxmox-notify/Cargo.toml +++ b/proxmox-notify/Cargo.toml @@ -15,18 +15,19 @@ lettre = { workspace = true, optional = true } log.workspace = true mail-parser = { workspace = true, optional = true } openssl.workspace = true -proxmox-http = { workspace = true, features = ["client-sync"], optional = true } -proxmox-http-error.workspace = true -proxmox-human-byte.workspace = true -proxmox-serde.workspace = true -proxmox-schema = { workspace = true, features = ["api-macro", "api-types"]} -proxmox-section-config = { workspace = true } -proxmox-sys = { workspace = true, optional = true } -proxmox-time.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 + [features] default = ["sendmail", "gotify", "smtp"] mail-forwarder = ["dep:mail-parser"]