From fc45c98c292613e2223f7f12623b3e18573f8f08 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Fri, 5 Jan 2024 13:10:49 +0200 Subject: [PATCH] gnu: rust-futures-executor-0.3: Update to 0.3.30. * gnu/packages/crates-io.scm (rust-futures-executor-0.3): Update to 0.3.30. [arguments]: Don't skip the build. Skip the tests. Change-Id: Ic381097a4df81971dbd1b8671c598439cdf09bf0 --- gnu/packages/crates-io.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index bc17c93881..0b63c06eae 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -26717,19 +26717,18 @@ (define-public rust-futures-cpupool-0.1 (define-public rust-futures-executor-0.3 (package (name "rust-futures-executor") - (version "0.3.28") + (version "0.3.30") (source (origin (method url-fetch) (uri (crate-uri "futures-executor" version)) - (file-name - (string-append name "-" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1q468di96knnla72xdvswic1ir2qkrf5czsdigc5n4l86a1fxv6c")))) + "07dh08gs9vfll2h36kq32q9xd86xm6lyl9xikmmwlkqnmrrgqxm5")))) (build-system cargo-build-system) (arguments - `(#:skip-build? #t + `(#:tests? #f ; use of undeclared crate or module `futures` #:cargo-inputs (("rust-futures-core" ,rust-futures-core-0.3) ("rust-futures-task" ,rust-futures-task-0.3)