[pve-devel] [PATCH 01/12] add proxmox-installer-common crate

Aaron Lauterer a.lauterer at proxmox.com
Wed Oct 25 18:00:00 CEST 2023


It will be used for code shared among the different crates in the
installer. For now between the TUI installer and the upcoming auto
installer.

Signed-off-by: Aaron Lauterer <a.lauterer at proxmox.com>
---
 Cargo.toml                          |  1 +
 proxmox-installer-common/Cargo.toml | 10 ++++++++++
 proxmox-installer-common/src/lib.rs |  0
 3 files changed, 11 insertions(+)
 create mode 100644 proxmox-installer-common/Cargo.toml
 create mode 100644 proxmox-installer-common/src/lib.rs

diff --git a/Cargo.toml b/Cargo.toml
index fd151ba..c1bd578 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,6 @@
 [workspace]
 members = [
+    "proxmox-installer-common",
     "proxmox-tui-installer",
 ]
 
diff --git a/proxmox-installer-common/Cargo.toml b/proxmox-installer-common/Cargo.toml
new file mode 100644
index 0000000..b8762e8
--- /dev/null
+++ b/proxmox-installer-common/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "proxmox-installer-common"
+version = "0.1.0"
+edition = "2021"
+authors = [ "Aaron Lauterer <a.lauterer at proxmox.com>" ]
+license = "AGPL-3"
+exclude = [ "build", "debian" ]
+homepage = "https://www.proxmox.com"
+
+[dependencies]
diff --git a/proxmox-installer-common/src/lib.rs b/proxmox-installer-common/src/lib.rs
new file mode 100644
index 0000000..e69de29
-- 
2.39.2






More information about the pve-devel mailing list