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 6F5F674223 for ; Tue, 1 Jun 2021 09:30:49 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 6835926216 for ; Tue, 1 Jun 2021 09:30:19 +0200 (CEST) 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) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id D954F2620B for ; Tue, 1 Jun 2021 09:30:18 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id A8B2343554 for ; Tue, 1 Jun 2021 09:30:18 +0200 (CEST) From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= To: pbs-devel@lists.proxmox.com Date: Tue, 1 Jun 2021 09:30:12 +0200 Message-Id: <20210601073013.4116145-1-f.gruenbichler@proxmox.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.240 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_NUMSUBJECT 0.5 Subject ends in numbers excluding current years 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 1/2] bump tokio dependency to 1.6 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: Tue, 01 Jun 2021 07:30:49 -0000 it contains a bug fix that allows dropping the workaround in 75f9f40922f9c5380336b987519d9d46d5b6db03 file-restore-daemon: work around tokio DuplexStream bug Signed-off-by: Fabian Grünbichler --- Cargo.toml | 2 +- debian/control | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6ce778dd..6f6490e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,7 +67,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" siphasher = "0.3" syslog = "4.0" -tokio = { version = "1.0", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] } +tokio = { version = "1.6", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] } tokio-openssl = "0.6.1" tokio-stream = "0.1.0" tokio-util = { version = "0.6", features = [ "codec", "io" ] } diff --git a/debian/control b/debian/control index 468dd4e1..5bf595b4 100644 --- a/debian/control +++ b/debian/control @@ -58,18 +58,18 @@ Build-Depends: debhelper (>= 11), librust-siphasher-0.3+default-dev, librust-syslog-4+default-dev, librust-thiserror-1+default-dev, - librust-tokio-1+default-dev, - librust-tokio-1+fs-dev, - librust-tokio-1+io-std-dev, - librust-tokio-1+io-util-dev, - librust-tokio-1+macros-dev, - librust-tokio-1+net-dev, - librust-tokio-1+parking-lot-dev, - librust-tokio-1+process-dev, - librust-tokio-1+rt-dev, - librust-tokio-1+rt-multi-thread-dev, - librust-tokio-1+signal-dev, - librust-tokio-1+time-dev, + librust-tokio-1+default-dev (>= 1.6-~~), + librust-tokio-1+fs-dev (>= 1.6-~~), + librust-tokio-1+io-std-dev (>= 1.6-~~), + librust-tokio-1+io-util-dev (>= 1.6-~~), + librust-tokio-1+macros-dev (>= 1.6-~~), + librust-tokio-1+net-dev (>= 1.6-~~), + librust-tokio-1+parking-lot-dev (>= 1.6-~~), + librust-tokio-1+process-dev (>= 1.6-~~), + librust-tokio-1+rt-dev (>= 1.6-~~), + librust-tokio-1+rt-multi-thread-dev (>= 1.6-~~), + librust-tokio-1+signal-dev (>= 1.6-~~), + librust-tokio-1+time-dev (>= 1.6-~~), librust-tokio-openssl-0.6+default-dev (>= 0.6.1-~~), librust-tokio-stream-0.1+default-dev, librust-tokio-util-0.6+codec-dev, -- 2.20.1