From: Jordan Moore <lockbox@struct.foo>
To: 75127@debbugs.gnu.org
Cc: Jordan Moore <lockbox@struct.foo>,
Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#75127] [PATCH v4 01/57] gnu: Add cargo-nextest.
Date: Sat, 4 Jan 2025 23:19:24 -0500 [thread overview]
Message-ID: <11c3adbb8153d09cb8e216c31acdabcc5ccb855a.1736050696.git.lockbox@struct.foo> (raw)
In-Reply-To: <cover.1736050696.git.lockbox@struct.foo>
* gnu/packages/rust-apps.scm (cargo-nextest): New variable.
Change-Id: If524cda770aba1e2e3bb082d47c0816cbdaa5aa3
---
gnu/packages/rust-apps.scm | 49 ++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 2182daa2f3..4b3a23c7e0 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -423,6 +423,55 @@ (define-public cargo-machete
(description "@code{cargo-machete} finds unused dependencies in Cargo.toml.")
(license (list license:expat license:asl2.0))))
+(define-public cargo-nextest
+ (package
+ (name "cargo-nextest")
+ (version "0.9.87")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "cargo-nextest" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "02aq4wmrnwlm2amjqpwv0k58mw5kbwkxgj2z1d6qydxfrrm50k1d"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-camino" ,rust-camino-1)
+ ("rust-camino" ,rust-camino-1)
+ ("rust-cfg-if" ,rust-cfg-if-1)
+ ("rust-clap" ,rust-clap-4)
+ ("rust-color-eyre" ,rust-color-eyre-0.6)
+ ("rust-dialoguer" ,rust-dialoguer-0.11)
+ ("rust-duct" ,rust-duct-0.13)
+ ("rust-enable-ansi-support" ,rust-enable-ansi-support-0.2)
+ ("rust-guppy" ,rust-guppy-0.17)
+ ("rust-itertools" ,rust-itertools-0.13)
+ ("rust-miette" ,rust-miette-7)
+ ("rust-nextest-filtering" ,rust-nextest-filtering-0.12)
+ ("rust-nextest-metadata" ,rust-nextest-metadata-0.12)
+ ("rust-nextest-runner" ,rust-nextest-runner-0.70)
+ ("rust-nextest-workspace-hack" ,rust-nextest-workspace-hack-0.1)
+ ("rust-once-cell" ,rust-once-cell-1)
+ ("rust-owo-colors" ,rust-owo-colors-4)
+ ("rust-pathdiff" ,rust-pathdiff-0.2)
+ ("rust-quick-junit" ,rust-quick-junit-0.5)
+ ("rust-semver" ,rust-semver-1)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-shell-words" ,rust-shell-words-1)
+ ("rust-supports-color" ,rust-supports-color-3)
+ ("rust-supports-unicode" ,rust-supports-unicode-3)
+ ("rust-swrite" ,rust-swrite-0.1)
+ ("rust-thiserror" ,rust-thiserror-2)
+ ("rust-tracing" ,rust-tracing-0.1)
+ ("rust-tracing-subscriber" ,rust-tracing-subscriber-0.3))
+ #:cargo-development-inputs (("rust-camino-tempfile" ,rust-camino-tempfile-1))))
+ (inputs (list pkg-config zlib `(,zstd "lib")))
+ (home-page "https://github.com/nextest-rs/nextest")
+ (synopsis "next-generation test runner for Rust.")
+ (description
+ "This package provides a next-generation test runner for Rust.")
+ (license (list license:asl2.0 license:expat))))
+
(define-public complgen
(package
(name "complgen")
--
2.46.0
next parent reply other threads:[~2025-01-05 4:21 UTC|newest]
Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1736050696.git.lockbox@struct.foo>
2025-01-05 4:19 ` Jordan Moore [this message]
2025-01-05 4:19 ` [bug#75127] [PATCH v4 02/57] gnu: Add rust-enable-ansi-support-0.2 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 03/57] gnu: Add rust-guppy-0.17 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 04/57] gnu: Add rust-nextest-filtering-0.12 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 05/57] gnu: Add rust-nextest-workspace-hack-0.1 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 06/57] gnu: Add rust-nextest-metadata-0.12 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 07/57] gnu: Add rust-nextest-runner-0.70 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 08/57] gnu: Add rust-quick-junit-0.5 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 09/57] gnu: Add rust-swrite-0.1 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 10/57] gnu: Add rust-camino-tempfile-1 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 11/57] gnu: Add rust-debug-ignore-1 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 12/57] gnu: Add rust-guppy-summaries-0.7 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 13/57] gnu: Add rust-guppy-workspace-hack-0.1 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 14/57] gnu: Add rust-nested-0.1 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 15/57] gnu: Add rust-target-spec-3 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 16/57] gnu: Add rust-recursion-0.5 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 17/57] gnu: Add rust-test-strategy-0.4 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 18/57] gnu: Add rust-smol-str-0.3 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 19/57] gnu: Add rust-async-scoped-0.9 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 20/57] gnu: Add rust-atomicwrites-0.4 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 21/57] gnu: Add rust-config-0.14 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 22/57] gnu: Add rust-console-subscriber-0.4 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 23/57] gnu: Add rust-future-queue-0.3 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 24/57] gnu: Add rust-indent-write-2 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 25/57] gnu: Add rust-mukti-metadata-0.3 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 26/57] gnu: Add rust-newtype-uuid-1 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 27/57] gnu: Add rust-self-update-0.41 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 28/57] gnu: Add rust-target-spec-miette-0.4 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 29/57] gnu: Add rust-win32job-2 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 30/57] gnu: Add rust-diffus-0.10 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 31/57] gnu: Add rust-diffus-derive-0.10 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 32/57] gnu: Add rust-derive-builder-core-0.20 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 33/57] gnu: Add rust-derive-builder-macro-0.20 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 34/57] gnu: Add rust-structmeta-0.3 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 35/57] gnu: Add rust-structmeta-derive-0.3 Jordan Moore
2025-01-05 4:19 ` [bug#75127] [PATCH v4 36/57] gnu: Add rust-quick-xml-0.23 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 37/57] gnu: Add rust-self-replace-1 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 38/57] gnu: Add rust-zipsign-api-0.1 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 39/57] gnu: Add rust-console-api-0.8 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 40/57] gnu: Add rust-tonic-web-0.12 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 41/57] gnu: Add rust-rust-ini-0.20 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 42/57] gnu: Add rust-yaml-rust2-0.8 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 43/57] gnu: Add rust-snake-case-0.3 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 44/57] gnu: rust-camino-1: Update to 1.1.9 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 45/57] gnu: rust-owo-colors-4: Update to 4.1.0 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 46/57] gnu: rust-pathdiff-0.2: Update to 0.2.3 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 47/57] gnu: rust-semver-1: Update to 1.0.24 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 48/57] gnu: rust-supports-color-3: Update to 3.0.2 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 49/57] gnu: rust-tracing-0.1: Update to 0.1.41 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 50/57] gnu: rust-tracing-subscriber-0.3: Update to 0.3.19 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 51/57] gnu: rust-petgraph-0.6: Update to 0.6.5 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 52/57] gnu: rust-indicatif-0.17: Update to 0.17.9 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 53/57] gnu: rust-pin-project-lite-0.2: Update to 0.2.15 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 54/57] gnu: rust-unicode-normalization-0.1: Update to 0.1.24 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 55/57] gnu: rust-tracing-attributes-0.1: Update to 0.1.28 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 56/57] gnu: rust-tracing-core-0.1: Update to 0.1.33 Jordan Moore
2025-01-05 4:20 ` [bug#75127] [PATCH v4 57/57] gnu: rust-cfg-expr-0.17: Update to 0.17.2 Jordan Moore
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=11c3adbb8153d09cb8e216c31acdabcc5ccb855a.1736050696.git.lockbox@struct.foo \
--to=lockbox@struct.foo \
--cc=75127@debbugs.gnu.org \
--cc=efraim@flashner.co.il \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.