From: Fabian Grünbichler Date: Thu, 2 Jun 2022 07:40:54 +0000 (+0200) Subject: bump tokio-util to 0.7 X-Git-Tag: v2.3.1~295 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=68a6e970d42d98145919c66a74f8bf91b9acaaea;p=proxmox-backup.git bump tokio-util to 0.7 along with the rest of tokio/futures/hyper/openssl being updated - this is the only one we explicitly depend on that had a non-compatible version number. Signed-off-by: Fabian Grünbichler --- diff --git a/Cargo.toml b/Cargo.toml index 507346bf..9776a5ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ syslog = "4.0" 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" ] } +tokio-util = { version = "0.7", features = [ "codec", "io" ] } tower-service = "0.3.0" udev = "0.4" url = "2.1" diff --git a/debian/control b/debian/control index c0cda274..47be1df2 100644 --- a/debian/control +++ b/debian/control @@ -97,9 +97,9 @@ Build-Depends: debhelper (>= 12), 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, - librust-tokio-util-0.6+default-dev, - librust-tokio-util-0.6+io-dev, + librust-tokio-util-0.7+codec-dev, + librust-tokio-util-0.7+default-dev, + librust-tokio-util-0.7+io-dev, librust-tower-service-0.3+default-dev, librust-udev-0.4+default-dev, librust-url-2+default-dev (>= 2.1-~~), diff --git a/proxmox-backup-client/Cargo.toml b/proxmox-backup-client/Cargo.toml index a8fe398e..961c10e9 100644 --- a/proxmox-backup-client/Cargo.toml +++ b/proxmox-backup-client/Cargo.toml @@ -15,7 +15,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1.6", features = [ "rt", "rt-multi-thread" ] } tokio-stream = "0.1.0" -tokio-util = { version = "0.6", features = [ "codec", "io" ] } +tokio-util = { version = "0.7", features = [ "codec", "io" ] } xdg = "2.2" zstd = { version = "0.6", features = [ "bindgen" ] } diff --git a/proxmox-restore-daemon/Cargo.toml b/proxmox-restore-daemon/Cargo.toml index af4146de..4cdbadb6 100644 --- a/proxmox-restore-daemon/Cargo.toml +++ b/proxmox-restore-daemon/Cargo.toml @@ -21,7 +21,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1.6", features = ["parking_lot", "sync"] } tokio-stream = "0.1.0" -tokio-util = { version = "0.6", features = [ "codec", "io" ] } +tokio-util = { version = "0.7", features = [ "codec", "io" ] } pathpatterns = "0.1.2" pxar = { version = "0.10.1", features = [ "tokio-io" ] }