[pve-devel] [PATCH proxmox 01/18] add proxmox-notification crate

Lukas Wagner l.wagner at proxmox.com
Mon Mar 27 17:18:40 CEST 2023


Signed-off-by: Lukas Wagner <l.wagner at proxmox.com>
---
 Cargo.toml                      |  1 +
 proxmox-notification/Cargo.toml | 10 ++++++++++
 proxmox-notification/src/lib.rs |  0
 3 files changed, 11 insertions(+)
 create mode 100644 proxmox-notification/Cargo.toml
 create mode 100644 proxmox-notification/src/lib.rs

diff --git a/Cargo.toml b/Cargo.toml
index 9123af5..9ccfa1a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,6 +10,7 @@ members = [
     "proxmox-lang",
     "proxmox-ldap",
     "proxmox-metrics",
+    "proxmox-notification",
     "proxmox-rest-server",
     "proxmox-router",
     "proxmox-schema",
diff --git a/proxmox-notification/Cargo.toml b/proxmox-notification/Cargo.toml
new file mode 100644
index 0000000..47c85a3
--- /dev/null
+++ b/proxmox-notification/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "proxmox-notification"
+version = "0.1.0"
+authors.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
+exclude.workspace = true
+
+[dependencies]
diff --git a/proxmox-notification/src/lib.rs b/proxmox-notification/src/lib.rs
new file mode 100644
index 0000000..e69de29
-- 
2.30.2






More information about the pve-devel mailing list