From 9e7db7dceeb1f7477751bd320986235c3c9550cf Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 25 Dec 2024 16:22:46 +0200 Subject: [PATCH] gnu: netavark: Update to 1.13.1. * gnu/packages/rust-apps.scm (netavark): Update to 1.13.1. [cargo-inputs]: Add rust-hyper-util-0.1. Replace rust-netlink-packet-route-0.18 with 0.21, rust-nftables-0.3 with 0.5, rust-nix-0.27 with 0.29, rust-prost-0.12 with 0.13, rust-sysctl-0.5 with 0.6, rust-tonic-0.10 with 0.12, rust-tonic-build-0.10 with 0.12, rust-tower-0.4 with 0.5, rust-zbus-3 with 4. Change-Id: I2c8beb891dc2dd4e8eae93b6bceef0f3e1788d87 --- gnu/packages/rust-apps.scm | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index a7b110a7c4..0b547eca5e 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -1971,14 +1971,14 @@ (define-public maturin (define-public netavark (package (name "netavark") - (version "1.10.3") + (version "1.13.1") (source (origin (method url-fetch) (uri (crate-uri "netavark" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1viyj9xqq9hkcsghrfx7wjmky3hkxfr96952f9favd4zg9ih64yw")) + (base32 "1lzw30dfrp8zk181vl25g2dkpj7aq1jkalkikp2vsw33w1b611zi")) (modules '((guix build utils))) (snippet '(begin (substitute* (find-files "." "^Cargo\\.toml$") @@ -1995,32 +1995,33 @@ (define-public netavark ("rust-futures-channel" ,rust-futures-channel-0.3) ("rust-futures-core" ,rust-futures-core-0.3) ("rust-futures-util" ,rust-futures-util-0.3) + ("rust-hyper-util" ,rust-hyper-util-0.1) ("rust-ipnet" ,rust-ipnet-2) ("rust-iptables" ,rust-iptables-0.5) ("rust-libc" ,rust-libc-0.2) ("rust-log" ,rust-log-0.4) ("rust-mozim" ,rust-mozim-0.2) ("rust-netlink-packet-core" ,rust-netlink-packet-core-0.7) - ("rust-netlink-packet-route" ,rust-netlink-packet-route-0.18) + ("rust-netlink-packet-route" ,rust-netlink-packet-route-0.21) ("rust-netlink-packet-utils" ,rust-netlink-packet-utils-0.5) ("rust-netlink-sys" ,rust-netlink-sys-0.8) - ("rust-nftables" ,rust-nftables-0.3) + ("rust-nftables" ,rust-nftables-0.5) ("rust-nispor" ,rust-nispor-1) - ("rust-nix" ,rust-nix-0.27) - ("rust-prost" ,rust-prost-0.12) + ("rust-nix" ,rust-nix-0.29) + ("rust-prost" ,rust-prost-0.13) ("rust-rand" ,rust-rand-0.8) ("rust-serde" ,rust-serde-1) ("rust-serde-value" ,rust-serde-value-0.7) ("rust-serde-json" ,rust-serde-json-1) ("rust-sha2" ,rust-sha2-0.10) - ("rust-sysctl" ,rust-sysctl-0.5) + ("rust-sysctl" ,rust-sysctl-0.6) ("rust-tokio" ,rust-tokio-1) ("rust-tokio-stream" ,rust-tokio-stream-0.1) - ("rust-tonic" ,rust-tonic-0.10) - ("rust-tonic-build" ,rust-tonic-build-0.10) - ("rust-tower" ,rust-tower-0.4) + ("rust-tonic" ,rust-tonic-0.12) + ("rust-tonic-build" ,rust-tonic-build-0.12) + ("rust-tower" ,rust-tower-0.5) ("rust-url" ,rust-url-2) - ("rust-zbus" ,rust-zbus-3)) + ("rust-zbus" ,rust-zbus-4)) #:cargo-development-inputs (("rust-once-cell" ,rust-once-cell-1) ("rust-rand" ,rust-rand-0.8) ("rust-tempfile" ,rust-tempfile-3))))