From b8040a23cbab4971a0b9858ef28a04cbc75d05c1 Mon Sep 17 00:00:00 2001 From: Lukas Wagner Date: Thu, 20 Jul 2023 16:31:30 +0200 Subject: [PATCH] add proxmox-notify crate Signed-off-by: Lukas Wagner --- Cargo.toml | 1 + proxmox-notify/Cargo.toml | 10 ++++++++++ proxmox-notify/src/lib.rs | 0 3 files changed, 11 insertions(+) create mode 100644 proxmox-notify/Cargo.toml create mode 100644 proxmox-notify/src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index 1ecebabc..317593f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ members = [ "proxmox-ldap", "proxmox-login", "proxmox-metrics", + "proxmox-notify", "proxmox-openid", "proxmox-rest-server", "proxmox-router", diff --git a/proxmox-notify/Cargo.toml b/proxmox-notify/Cargo.toml new file mode 100644 index 00000000..2e69d5b0 --- /dev/null +++ b/proxmox-notify/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "proxmox-notify" +version = "0.1.0" +authors.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true +exclude.workspace = true + +[dependencies] diff --git a/proxmox-notify/src/lib.rs b/proxmox-notify/src/lib.rs new file mode 100644 index 00000000..e69de29b