From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 9C1D61FF173 for ; Mon, 11 Nov 2024 14:16:02 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id CD13DB266; Mon, 11 Nov 2024 14:15:59 +0100 (CET) From: Christoph Heiss To: pve-devel@lists.proxmox.com Date: Mon, 11 Nov 2024 14:14:59 +0100 Message-ID: <20241111131519.867887-4-c.heiss@proxmox.com> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241111131519.867887-1-c.heiss@proxmox.com> References: <20241111131519.867887-1-c.heiss@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.030 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH installer v4 03/12] tree-wide: convert some more crates to use workspace dependencies X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" No functional changes. Signed-off-by: Christoph Heiss --- Changes v3 -> v4: * no changes Changes v2 -> v3: * no changes Changes v1 -> v2: * no changes Cargo.toml | 4 ++++ proxmox-auto-install-assistant/Cargo.toml | 13 +++++++------ proxmox-auto-installer/Cargo.toml | 14 +++++++------- proxmox-chroot/Cargo.toml | 7 ++++--- proxmox-installer-common/Cargo.toml | 8 ++++---- proxmox-tui-installer/Cargo.toml | 8 +++++--- 6 files changed, 31 insertions(+), 23 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e20db33..a27df88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,6 +12,10 @@ members = [ [workspace.dependencies] anyhow = "1.0" log = "0.4.20" +regex = "1.7" +serde = "1.0" +serde_json = "1.0" +serde_plain = "1.0" toml = "0.8" proxmox-auto-installer.path = "./proxmox-auto-installer" proxmox-installer-common.path = "./proxmox-installer-common" diff --git a/proxmox-auto-install-assistant/Cargo.toml b/proxmox-auto-install-assistant/Cargo.toml index ab70d39..c4486f8 100644 --- a/proxmox-auto-install-assistant/Cargo.toml +++ b/proxmox-auto-install-assistant/Cargo.toml @@ -12,11 +12,12 @@ homepage = "https://www.proxmox.com" [dependencies] anyhow.workspace = true +log.workspace = true +proxmox-auto-installer.workspace = true +serde = { workspace = true, features = ["derive"] } +serde_json.workspace = true +toml.workspace = true +regex.workspace = true + clap = { version = "4.0", features = ["derive"] } glob = "0.3" -log = "0.4.20" -proxmox-auto-installer = { path = "../proxmox-auto-installer" } -regex = "1.7" -serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" -toml = "0.8" diff --git a/proxmox-auto-installer/Cargo.toml b/proxmox-auto-installer/Cargo.toml index 0353d6a..21ed538 100644 --- a/proxmox-auto-installer/Cargo.toml +++ b/proxmox-auto-installer/Cargo.toml @@ -12,12 +12,12 @@ homepage = "https://www.proxmox.com" [dependencies] anyhow.workspace = true +log.workspace = true +proxmox-installer-common.workspace = true +serde = { workspace = true, features = ["derive"] } +serde_json.workspace = true +serde_plain.workspace = true +toml.workspace = true + clap = { version = "4.0", features = ["derive"] } glob = "0.3" -log = "0.4.20" -proxmox-installer-common = { path = "../proxmox-installer-common" } -regex = "1.7" -serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" -serde_plain = "1.0" -toml = "0.8" diff --git a/proxmox-chroot/Cargo.toml b/proxmox-chroot/Cargo.toml index 6247baa..4a27bf7 100644 --- a/proxmox-chroot/Cargo.toml +++ b/proxmox-chroot/Cargo.toml @@ -9,8 +9,9 @@ homepage = "https://www.proxmox.com" [dependencies] anyhow.workspace = true +proxmox-installer-common.workspace = true +serde_json.workspace = true +regex.workspace = true + clap = { version = "4.0", features = ["derive"] } nix = "0.26.1" -proxmox-installer-common = { path = "../proxmox-installer-common" } -regex = "1.7" -serde_json = "1.0" diff --git a/proxmox-installer-common/Cargo.toml b/proxmox-installer-common/Cargo.toml index 007e6f4..ef7a614 100644 --- a/proxmox-installer-common/Cargo.toml +++ b/proxmox-installer-common/Cargo.toml @@ -9,10 +9,10 @@ homepage = "https://www.proxmox.com" [dependencies] anyhow.workspace = true -regex = "1.7" -serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" -serde_plain = "1.0" +regex.workspace = true +serde.workspace = true +serde_json.workspace = true +serde_plain.workspace = true # `http` feature hex = { version = "0.4", optional = true } diff --git a/proxmox-tui-installer/Cargo.toml b/proxmox-tui-installer/Cargo.toml index 618904c..c7a0e30 100644 --- a/proxmox-tui-installer/Cargo.toml +++ b/proxmox-tui-installer/Cargo.toml @@ -8,7 +8,9 @@ exclude = [ "build", "debian" ] homepage = "https://www.proxmox.com" [dependencies] +proxmox-installer-common.workspace = true +serde.workspace = true +serde_json.workspace = true +regex.workspace = true + cursive = { version = "0.21", default-features = false, features = ["crossterm-backend"] } -serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" -proxmox-installer-common = { path = "../proxmox-installer-common" } -- 2.47.0 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel