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 04/57] gnu: Add rust-nextest-filtering-0.12.
Date: Sat, 4 Jan 2025 23:19:27 -0500 [thread overview]
Message-ID: <bc9db65175e7d0399a1c4309c99e2eeb401e998d.1736050696.git.lockbox@struct.foo> (raw)
In-Reply-To: <cover.1736050696.git.lockbox@struct.foo>
* gnu/packages/crates-io.scm (rust-nextest-filtering-0.12): New variable.
Change-Id: Id02d58386962cff12928f5d89a4482503fe1151c
---
gnu/packages/crates-check.scm | 40 +++++++++++++++++++++++++++++++++--
1 file changed, 38 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/crates-check.scm b/gnu/packages/crates-check.scm
index 3d02f5421b..c307ec2a7f 100644
--- a/gnu/packages/crates-check.scm
+++ b/gnu/packages/crates-check.scm
@@ -9,7 +9,7 @@
;;; Copyright © 2023 Steve George <steve@futurile.net>
;;; Copyright © 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2024 Aaron Covrig <aaron.covrig.us@ieee.org>
-;;; Copyright © 2024 Jordan Moore <lockbox@struct.foo>
+;;; Copyright © 2024, 2025 Jordan Moore <lockbox@struct.foo>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -36,7 +36,11 @@ (define-module (gnu packages crates-check)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix utils)
- #:use-module (gnu packages crates-io))
+ #:use-module (gnu packages crates-compression)
+ #:use-module (gnu packages crates-crypto)
+ #:use-module (gnu packages crates-io)
+ #:use-module (gnu packages crates-web)
+ #:use-module (gnu packages crates-windows))
(define-public rust-criterion-0.5
(package
@@ -534,6 +538,38 @@ (define-public rust-mockall-double-0.3
select the mock struct at compile time. Used with the Mockall crate.")
(license (list license:expat license:asl2.0))))
+(define-public rust-nextest-filtering-0.12
+ (package
+ (name "rust-nextest-filtering")
+ (version "0.12.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "nextest-filtering" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1fz7w2qsmh98c246x16l9j5xypsj1nbc715wszajjkjiv7hbibvy"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs (("rust-globset" ,rust-globset-0.4)
+ ("rust-guppy" ,rust-guppy-0.17)
+ ("rust-miette" ,rust-miette-7)
+ ("rust-nextest-metadata" ,rust-nextest-metadata-0.12)
+ ("rust-nextest-workspace-hack" ,rust-nextest-workspace-hack-0.1)
+ ("rust-proptest" ,rust-proptest-1)
+ ("rust-recursion" ,rust-recursion-0.5)
+ ("rust-regex" ,rust-regex-1)
+ ("rust-regex-syntax" ,rust-regex-syntax-0.8)
+ ("rust-test-strategy" ,rust-test-strategy-0.4)
+ ("rust-thiserror" ,rust-thiserror-1)
+ ("rust-winnow" ,rust-winnow-0.6)
+ ("rust-xxhash-rust" ,rust-xxhash-rust-0.8))))
+ (home-page "https://github.com/nextest-rs/nextest")
+ (synopsis "Filtering DSL for cargo-nextest")
+ (description "This package provides Filtering DSL for cargo-nextest.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-quickcheck-1
(package
(name "rust-quickcheck")
--
2.46.0
next prev parent reply other threads:[~2025-01-05 4:22 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 ` [bug#75127] [PATCH v4 01/57] gnu: Add cargo-nextest Jordan Moore
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 ` Jordan Moore [this message]
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=bc9db65175e7d0399a1c4309c99e2eeb401e998d.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.