From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 45889EB2D for ; Mon, 12 Dec 2022 13:06:22 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 270DD4460 for ; Mon, 12 Dec 2022 13:05:52 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Mon, 12 Dec 2022 13:05:51 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 0DB4D44724 for ; Mon, 12 Dec 2022 13:05:51 +0100 (CET) From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= To: pbs-devel@lists.proxmox.com Date: Mon, 12 Dec 2022 13:05:36 +0100 Message-Id: <20221212120541.1909975-2-f.gruenbichler@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20221212120541.1909975-1-f.gruenbichler@proxmox.com> References: <20221212120541.1909975-1-f.gruenbichler@proxmox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.010 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_LOTSOFHASH 0.25 Emails with lots of hash-like gibberish SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pbs-devel] [PATCH proxmox-backup-qemu 1/6] update dependencies X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Dec 2022 12:06:22 -0000 to the currently packaged/released ones. Signed-off-by: Fabian Grünbichler --- Notes: pbs-config now pulls in pbs-config, we could also move pbs_config::key_config somewhere else since that is the only thing we are using from pbs-config in the qemu lib.. d/control updated with cargo-fairy d-control Cargo.toml ../proxmox-backup/{pbs-api-types,pbs-client,pbs-config,pbs-datastore,pbs-tools}/Cargo.toml (the generated warnings are benign, since it doesn't know these git dependencies are okay to not export as package dependencies) Cargo.toml | 14 +++++++------- debian/control | 40 ++++++++++++++++++++++------------------ 2 files changed, 29 insertions(+), 25 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d047eb5..f6841be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ build = "build.rs" crate-type = ['lib', 'cdylib', 'staticlib'] [build-dependencies] -cbindgen = "0.20.0" +cbindgen = "0.24.0" [dependencies] anyhow = "1.0" @@ -32,13 +32,13 @@ openssl = "0.10" proxmox-async = "0.4" proxmox-lang = "1" proxmox-schema = { version = "1", features = [ "api-macro" ] } -proxmox-sys = { version = "0.2", features = [ "sortable-macro"] } +proxmox-sys = { version = "0.4", features = [ "sortable-macro"] } -pbs-api-types = { git = "git://git.proxmox.com/git/proxmox-backup.git", rev = "bc21ade293fa7af096ad21fce54fda1e9814993c" } -pbs-tools = { git = "git://git.proxmox.com/git/proxmox-backup.git", rev = "bc21ade293fa7af096ad21fce54fda1e9814993c" } -pbs-config = { git = "git://git.proxmox.com/git/proxmox-backup.git", rev = "bc21ade293fa7af096ad21fce54fda1e9814993c" } -pbs-datastore = { git = "git://git.proxmox.com/git/proxmox-backup.git", rev = "bc21ade293fa7af096ad21fce54fda1e9814993c" } -pbs-client = { git = "git://git.proxmox.com/git/proxmox-backup.git", rev = "bc21ade293fa7af096ad21fce54fda1e9814993c" } +pbs-api-types = { git = "git://git.proxmox.com/git/proxmox-backup.git", rev = "v2.3.1" } +pbs-tools = { git = "git://git.proxmox.com/git/proxmox-backup.git", rev = "v2.3.1" } +pbs-config = { git = "git://git.proxmox.com/git/proxmox-backup.git", rev = "v2.3.1" } +pbs-datastore = { git = "git://git.proxmox.com/git/proxmox-backup.git", rev = "v2.3.1" } +pbs-client = { git = "git://git.proxmox.com/git/proxmox-backup.git", rev = "v2.3.1" } serde_json = "1.0" tokio = { version = "1.6", features = [ "fs", "io-util", "macros", "net", "rt-multi-thread", "signal", "time" ] } diff --git a/debian/control b/debian/control index f943551..3627ea9 100644 --- a/debian/control +++ b/debian/control @@ -24,41 +24,45 @@ Build-Depends: cbindgen, librust-hyper-0.14+full-dev, librust-lazy-static-1+default-dev (>= 1.4-~~), librust-libc-0.2+default-dev, - librust-log-0.4+default-dev, - librust-nix-0.19+default-dev (>= 0.19.1-~~), - librust-nom-5+default-dev (>= 5.1-~~), + librust-log-0.4+default-dev (>= 0.4.17-~~), + librust-nix-0.24+default-dev, + librust-nom-7+default-dev, librust-once-cell-1+default-dev (>= 1.5-~~), - librust-openssl-0.10+default-dev, + librust-openssl-0.10+default-dev (>= 0.10.40-~~), librust-pathpatterns-0.1+default-dev (>= 0.1.2-~~), librust-percent-encoding-2+default-dev (>= 2.1-~~), librust-pin-project-lite-0.2+default-dev, librust-proxmox-async-0.4+default-dev, librust-proxmox-borrow-1+default-dev, librust-proxmox-compression-0.1+default-dev (>= 0.1.1-~~), - librust-proxmox-fuse-0.1+default-dev (>= 0.1.1-~~), - librust-proxmox-http-0.6+client-dev, - librust-proxmox-http-0.6+default-dev, - librust-proxmox-http-0.6+http-helpers-dev, - librust-proxmox-http-0.6+websocket-dev, + librust-proxmox-http-0.7+client-dev, + librust-proxmox-http-0.7+default-dev, + librust-proxmox-http-0.7+http-helpers-dev, + librust-proxmox-http-0.7+websocket-dev, librust-proxmox-io-1+default-dev (>= 1.0.1-~~), librust-proxmox-io-1+tokio-dev (>= 1.0.1-~~), librust-proxmox-lang-1+default-dev (>= 1.1-~~), - librust-proxmox-router-1+cli-dev (>= 1.2-~~), - librust-proxmox-router-1+default-dev (>= 1.2-~~), + librust-proxmox-metrics-0.2+default-dev, + librust-proxmox-router-1+cli-dev (>= 1.3-~~), + librust-proxmox-router-1+default-dev (>= 1.3-~~), + librust-proxmox-router-1+server-dev (>= 1.3-~~), librust-proxmox-schema-1+api-macro-dev (>= 1.3.1-~~), librust-proxmox-schema-1+default-dev (>= 1.3.1-~~), librust-proxmox-section-config-1+default-dev, - librust-proxmox-serde-0.1+default-dev, + librust-proxmox-serde-0.1+default-dev (>= 0.1.1-~~), + librust-proxmox-serde-0.1+serde-json-dev (>= 0.1.1-~~), librust-proxmox-shared-memory-0.2+default-dev, - librust-proxmox-sys-0.2+default-dev, - librust-proxmox-sys-0.2+sortable-macro-dev, - librust-proxmox-time-1+default-dev (>= 1.1.1-~~), + librust-proxmox-sys-0.4+acl-dev (>= 0.4.1-~~), + librust-proxmox-sys-0.4+crypt-dev (>= 0.4.1-~~), + librust-proxmox-sys-0.4+default-dev (>= 0.4.1-~~), + librust-proxmox-sys-0.4+sortable-macro-dev (>= 0.4.1-~~), + librust-proxmox-sys-0.4+timer-dev (>= 0.4.1-~~), + librust-proxmox-time-1+default-dev (>= 1.1.2-~~), librust-proxmox-uuid-1+default-dev, librust-proxmox-uuid-1+serde-dev, - librust-pxar-0.10+default-dev (>= 0.10.1-~~), - librust-pxar-0.10+tokio-io-dev (>= 0.10.1-~~), + librust-pxar-0.10+default-dev (>= 0.10.2-~~), librust-regex-1+default-dev (>= 1.5.5-~~), - librust-rustyline-7+default-dev, + librust-rustyline-9+default-dev, librust-serde-1+default-dev, librust-serde-1+derive-dev, librust-serde-json-1+default-dev, -- 2.30.2