all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Aaron Covrig via Guix-patches via <guix-patches@gnu.org>
To: 74551@debbugs.gnu.org
Cc: Jordan Moore <lockbox@struct.foo>
Subject: [bug#74551] [PATCH rust-team v3 59/73] gnu: Add rust-shadow-rs-0.36
Date: Mon,  2 Dec 2024 22:00:39 -0500	[thread overview]
Message-ID: <20241203030059.1214554-60-aaron.covrig.us@ieee.org> (raw)
In-Reply-To: <20241203030059.1214554-1-aaron.covrig.us@ieee.org>

From: Jordan Moore <lockbox@struct.foo>

* gnu/packages/crates-io.scm (rust-shadow-rs-0.36): New variable.
---
 gnu/packages/crates-io.scm | 50 +++++++++++++++++++++++++++++++-------
 1 file changed, 41 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2fab9106b1..2b693951c0 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -74564,8 +74564,48 @@ (define-public rust-sevenz-rust-0.5
      "This package provides a 7z decompressor/compressor written in pure rust.")
     (license license:asl2.0)))
 
+(define-public rust-shadow-rs-0.36
+  (package
+    (name "rust-shadow-rs")
+    (version "0.36.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "shadow-rs" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "064srz17klcgxqjzsj29pqn238y4pkn3l1h20mw9yyj98c3cvksq"))))
+    (build-system cargo-build-system)
+    (native-inputs `(,pkg-config))
+    (inputs `(,zlib ,libgit2-1.8))
+    (arguments
+     `(#:cargo-test-flags '("--"
+                            ;; Skip tests with missing files
+                            "--skip=date_time::tests::test_local_now_human_format"
+                            ;; Broken tests
+                            "--skip=git::tests::test_command_last_tag"
+                            "--skip=git::tests::test_current_branch"
+                            "--skip=git::tests::test_git")
+       #:cargo-inputs (("rust-cargo-metadata" ,rust-cargo-metadata-0.18)
+                       ("rust-const-format" ,rust-const-format-0.2)
+                       ("rust-document-features" ,rust-document-features-0.2)
+                       ("rust-git2" ,rust-git2-0.19)
+                       ("rust-is-debug" ,rust-is-debug-1)
+                       ("rust-serde-json" ,rust-serde-json-1)
+                       ("rust-time" ,rust-time-0.3)
+                       ("rust-tzdb" ,rust-tzdb-0.6))
+       #:cargo-development-inputs (("rust-winnow" ,rust-winnow-0.6))))
+    (home-page "https://github.com/baoyachi/shadow-rs")
+    (synopsis "Store build-time information in your rust project")
+    (description
+     "@code{shadow-rs} allows you to recall properties of the build process
+and environment at run time.  You can use this tool to check in production
+exactly where a binary came from and how it was built.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-shadow-rs-0.26
   (package
+    (inherit rust-shadow-rs-0.36)
     (name "rust-shadow-rs")
     (version "0.26.1")
     (source
@@ -74575,7 +74615,6 @@ (define-public rust-shadow-rs-0.26
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32 "15xrlf66f10773k9kwpvz8909akfjspyy0yy9ss665wrfs15qp1y"))))
-    (build-system cargo-build-system)
     (arguments
      `(#:cargo-test-flags
        '("--release" "--"
@@ -74591,14 +74630,7 @@ (define-public rust-shadow-rs-0.26
                        ("rust-tzdb" ,rust-tzdb-0.6))
        #:cargo-development-inputs (("rust-winnow" ,rust-winnow-0.5))))
     (native-inputs (list pkg-config))
-    (inputs (list libgit2-1.7 zlib))
-    (home-page "https://github.com/baoyachi/shadow-rs")
-    (synopsis "Recall properties of the build process at run time")
-    (description
-     "@code{shadow-rs} allows you to recall properties of the build process
-and environment at run time.  You can use this tool to check in production
-exactly where a binary came from and how it was built.")
-    (license (list license:expat license:asl2.0))))
+    (inputs (list libgit2-1.7 zlib))))
 
 (define-public rust-shadow-rs-0.8
   (package
-- 
2.47.0





  parent reply	other threads:[~2024-12-03  3:35 UTC|newest]

Thread overview: 177+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-26 21:34 [bug#74551] [PATCH 00/49] Add starship shell utility Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 01/49] gnu: Add rust-deelevate-0.2 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 02/49] gnu: rust-dunce-1: Update to 1.0.5 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 03/49] gnu: Add rust-tauri-winrt-notification-0.2 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 04/49] gnu: Add rust-winsafe-0.0.19 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 05/49] gnu: Add rust-windows-0.56 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 06/49] gnu: Add rust-windows-core-0.56 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 07/49] gnu: Add rust-windows-interface-0.56 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 08/49] gnu: Add rust-windows-version-0.1 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 09/49] gnu: Add rust-mac-notification-sys-0.6 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 10/49] gnu: Add rust-arraydeque-0.5 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 11/49] gnu: Add rust-auto-enums-0.8 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 12/49] gnu: rust-clap-4: Update to 4.5.21 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 13/49] gnu: rust-clap-builder-4: " Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 14/49] gnu: rust-clap-complete-4: Update to 4.5.38 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 15/49] gnu: Add rust-coverage-helper-0.2 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 16/49] gnu: Add rust-dlv-list-0.5 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 17/49] gnu: Add rust-guess-host-triple-0.1 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 18/49] gnu: Add rust-mockall-0.13 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 19/49] gnu: Add rust-mockall-derive-0.13 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 20/49] gnu: Add rust-notify-rust-4 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 21/49] gnu: rust-open-5: Update to 5.3.1 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 22/49] gnu: Add rust-ordered-multimap-0.7 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 23/49] gnu: Add rust-pathsearch-0.2 Jordan Moore
2024-11-26 21:38 ` [bug#74551] [PATCH 24/49] gnu: rust-pest-2: Update to 2.7.14 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 25/49] gnu: rust-pest-derive-2: " Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 26/49] gnu: rust-pest-generator-2: " Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 27/49] gnu: rust-pest-meta-2: " Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 28/49] gnu: Add rust-process-control-5 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 29/49] gnu: Add rust-rust-ini-0.21 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 30/49] gnu: rust-serde-json-1: Update to 1.0.133 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 31/49] gnu: Add rust-shadow-rs-0.35 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 32/49] gnu: Add rust-starship-battery-0.10 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 33/49] gnu: rust-strsim-0.11: Update to 0.11.1 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 34/49] gnu: Add rust-systemstat-0.2 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 35/49] gnu: Add rust-terminal-size-0.4 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 36/49] gnu: Add rust-termwiz-0.15 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 37/49] gnu: rust-toml-edit-0.22: Update to 0.22.22 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 38/49] gnu: Add rust-trim-in-place-0.1 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 39/49] gnu: rust-unicode-segmentation-1: Update to 1.12.0 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 40/49] gnu: Add rust-unicode-width-0.2 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 41/49] gnu: Add rust-uom-0.36 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 42/49] gnu: Add rust-versions-6 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 43/49] gnu: Add rust-wasite-0.1 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 44/49] gnu: rust-which-6: Update to 6.0.3 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 45/49] gnu: rust-whoami-1: Update to 1.5.2 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 46/49] gnu: Add rust-yaml-rust2-0.9 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 47/49] gnu: Add rust-windows-implement-0.56 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 48/49] gnu: rust-indexmap-2: Update to 2.6.0 Jordan Moore
2024-11-26 21:39 ` [bug#74551] [PATCH 49/49] gnu: Add starship Jordan Moore
2024-11-30 16:46 ` [bug#74551] status Jordan Moore
2024-11-30 16:54 ` [bug#74551] [PATCH v2 00/49] Add starship utility Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 01/49] gnu: Add rust-deelevate-0.2 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 02/49] gnu: rust-dunce-1: Update to 1.0.5 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 03/49] gnu: Add rust-tauri-winrt-notification-0.2 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 04/49] gnu: Add rust-winsafe-0.0.19 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 05/49] gnu: Add rust-windows-0.56 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 06/49] gnu: Add rust-windows-core-0.56 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 07/49] gnu: Add rust-windows-interface-0.56 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 08/49] gnu: Add rust-windows-version-0.1 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 09/49] gnu: Add rust-mac-notification-sys-0.6 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 10/49] gnu: Add rust-arraydeque-0.5 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 11/49] gnu: Add rust-auto-enums-0.8 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 12/49] gnu: rust-clap-4: Update to 4.5.21 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 13/49] gnu: rust-clap-builder-4: " Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 14/49] gnu: rust-clap-complete-4: Update to 4.5.38 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 15/49] gnu: Add rust-coverage-helper-0.2 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 16/49] gnu: Add rust-dlv-list-0.5 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 17/49] gnu: Add rust-guess-host-triple-0.1 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 18/49] gnu: Add rust-mockall-0.13 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 19/49] gnu: Add rust-mockall-derive-0.13 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 20/49] gnu: Add rust-notify-rust-4 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 21/49] gnu: rust-open-5: Update to 5.3.1 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 22/49] gnu: Add rust-ordered-multimap-0.7 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 23/49] gnu: Add rust-pathsearch-0.2 Jordan Moore
2024-11-30 16:54   ` [bug#74551] [PATCH v2 24/49] gnu: rust-pest-2: Update to 2.7.14 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 25/49] gnu: rust-pest-derive-2: " Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 26/49] gnu: rust-pest-generator-2: " Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 27/49] gnu: rust-pest-meta-2: " Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 28/49] gnu: Add rust-process-control-5 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 29/49] gnu: Add rust-rust-ini-0.21 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 30/49] gnu: rust-serde-json-1: Update to 1.0.133 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 31/49] gnu: Add rust-shadow-rs-0.35 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 32/49] gnu: Add rust-starship-battery-0.10 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 33/49] gnu: rust-strsim-0.11: Update to 0.11.1 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 34/49] gnu: Add rust-systemstat-0.2 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 35/49] gnu: Add rust-terminal-size-0.4 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 36/49] gnu: Add rust-termwiz-0.15 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 37/49] gnu: rust-toml-edit-0.22: Update to 0.22.22 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 38/49] gnu: Add rust-trim-in-place-0.1 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 39/49] gnu: rust-unicode-segmentation-1: Update to 1.12.0 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 40/49] gnu: Add rust-unicode-width-0.2 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 41/49] gnu: Add rust-uom-0.36 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 42/49] gnu: Add rust-versions-6 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 43/49] gnu: Add rust-wasite-0.1 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 44/49] gnu: rust-which-6: Update to 6.0.3 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 45/49] gnu: rust-whoami-1: Update to 1.5.2 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 46/49] gnu: Add rust-yaml-rust2-0.9 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 47/49] gnu: Add rust-windows-implement-0.56 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 48/49] gnu: rust-indexmap-2: Update to 2.6.0 Jordan Moore
2024-11-30 16:55   ` [bug#74551] [PATCH v2 49/49] gnu: Add starship Jordan Moore
2024-12-03  2:59 ` [bug#74551] [PATCH rust-team v3 00/73] Building starship Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 01/73] gnu: rust-approx: Upgrade to v0.5.1 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 02/73] gnu: rust-target-triple: Add v0.1.3 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 03/73] gnu: rust-any-all-workaround: enable building Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 04/73] gnu: rust-encoding-rs: Upgrade to v0.8.35 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 05/73] gnu: rust-fastrand: Upgrade to version 2.2.0 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 06/73] gnu: rust-hashlink: Upgrade to v0.8.4 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 07/73] gnu: rust-hashlink: Upgrade to v0.9.1 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 08/73] gnu: rust-hashbrown: Upgrade v0.14 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 09/73] gnu: rust-hashbrown: Upgrade v0.15 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 10/73] gnu: rust-libtest-mimic: Add v0.4.1 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 11/73] gnu: rust-libtest-mimic: Add v0.8.1 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 12/73] gnu: rust-derive-utils: Add v0.14.2 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 13/73] gnu: rust-macrotest: Upgrade to v1.0.13 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 14/73] gnu: rust-mockall-double: Upgrade to v0.3.1 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 15/73] gnu: rust-trybuild: Upgrade to v1.0.101 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 16/73] gnu: Add rust-pathsearch-0.2 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 17/73] gnu: Add rust-termwiz-0.15 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 18/73] gnu: Add rust-deelevate-0.2 Aaron Covrig via Guix-patches via
2024-12-03  2:59   ` [bug#74551] [PATCH rust-team v3 19/73] gnu: rust-dunce-1: Update to 1.0.5 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 20/73] gnu: Add rust-winsafe-0.0.19 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 21/73] gnu: rust-windows-implement: Add v0.56.0 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 22/73] gnu: Add rust-windows-interface-0.56 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 23/73] gnu: Add rust-windows-version-0.1 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 24/73] gnu: Add rust-windows-core-0.56 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 25/73] gnu: rust-windows-core-0.58: Enable building Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 26/73] gnu: Add rust-windows-0.56 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 27/73] gnu: Add rust-tauri-winrt-notification-0.2 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 28/73] gnu: Add rust-mac-notification-sys-0.6 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 29/73] gnu: Add rust-arraydeque-0.5 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 30/73] gnu: Add rust-auto-enums-0.8 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 31/73] gnu: Add rust-terminal-size-0.4 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 32/73] gnu: Add rust-unicode-width-0.2 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 33/73] gnu: rust-unicode-width: Bump v0.1 to v0.1.14 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 34/73] gnu: Add rust-trim-in-place-0.1 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 35/73] gnu: rust-unicode-segmentation-1: Update to 1.12.0 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 36/73] gnu: rust-clap-builder-4: Update to 4.5.21 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 37/73] gnu: rust-clap-4: " Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 38/73] gnu: rust-clap-complete-4: Update to 4.5.38 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 39/73] gnu: Add rust-coverage-helper-0.2 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 40/73] gnu: Add rust-coverage-helper-0.1 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 41/73] gnu: Add rust-dlv-list-0.5 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 42/73] gnu: Add rust-guess-host-triple-0.1 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 43/73] gnu: Add rust-mockall-derive-0.13 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 44/73] gnu: Add rust-mockall-0.13 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 45/73] gnu: rust-color-backtrace: Add v0.6.1 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 46/73] gnu: rust-indexmap-2: Update to 2.6.0 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 47/73] gnu: Add rust-notify-rust-4 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 48/73] gnu: rust-open-5: Update to 5.3.1 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 49/73] gnu: Add rust-ordered-multimap-0.7 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 50/73] gnu: rust-pest-2: Update to 2.7.14 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 51/73] gnu: rust-miette-derive: Upgrade to v7.4.0 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 52/73] gnu: rust-miette: " Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 53/73] gnu: rust-pest-meta-2: Update to 2.7.14 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 54/73] gnu: rust-pest-generator-2: " Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 55/73] gnu: rust-pest-derive-2: " Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 56/73] gnu: Add rust-process-control-5 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 57/73] gnu: Add rust-rust-ini-0.21 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 58/73] gnu: rust-serde-json-1: Update to 1.0.133 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` Aaron Covrig via Guix-patches via [this message]
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 60/73] gnu: Add rust-shadow-rs-0.35 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 61/73] gnu: Add rust-uom-0.36 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 62/73] gnu: rust-strsim-0.11: Update to 0.11.1 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 63/73] gnu: Add rust-starship-battery-0.10 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 64/73] gnu: Add rust-systemstat-0.2 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 65/73] gnu: rust-toml-edit-0.22: Update to 0.22.22 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 66/73] gnu: Add rust-versions-6 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 67/73] gnu: Add rust-wasite-0.1 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 68/73] gnu: rust-which-6: Update to 6.0.3 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 69/73] gnu: rust-which-7: Add v7.0.0 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 70/73] gnu: rust-either-1: Upgrade to v1.13.0 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 71/73] gnu: rust-whoami-1: Update to 1.5.2 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 72/73] gnu: Add rust-yaml-rust2-0.9 Aaron Covrig via Guix-patches via
2024-12-03  3:00   ` [bug#74551] [PATCH rust-team v3 73/73] gnu: Add starship Aaron Covrig via Guix-patches via
2024-12-03  4:08 ` [bug#74551] [PATCH rust-team v3 00/73] Building starship Jordan Moore
2024-12-03 15:05 ` bug#74551: [PATCH 00/49] Add starship shell utility Efraim Flashner

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=20241203030059.1214554-60-aaron.covrig.us@ieee.org \
    --to=guix-patches@gnu.org \
    --cc=74551@debbugs.gnu.org \
    --cc=aaron.covrig.us@ieee.org \
    --cc=lockbox@struct.foo \
    /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.