efraim pushed a commit to branch rust-team
in repository guix.

commit aff61688450459c222752fb8f40deee7667a17ed
Author: Herman Rimm <[email protected]>
AuthorDate: Tue Dec 24 16:32:31 2024 +0100

    gnu: rust-countme-3: Order alphabetically.
    
    * gnu/packages/crates-io.scm (rust-countme-3): Order.
    
    Change-Id: I30445938626d84a4a85c2aa0148b27275641ad34
    Signed-off-by: Efraim Flashner <[email protected]>
---
 gnu/packages/crates-io.scm | 52 +++++++++++++++++++++++-----------------------
 1 file changed, 26 insertions(+), 26 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2480ef092d..90b1e68520 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -17839,6 +17839,32 @@ in @code{no_std}.  Alloc support is optional.")
     (description "Counts the instructions executed within a single function.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-countme-3
+  (package
+    (name "rust-countme")
+    (version "3.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "countme" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "10z4r1xx77sr8axp3lsgc0azidazwgnhpzig2gcx5dfrdl66wx03"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-dashmap" ,rust-dashmap-4)
+        ("rust-once-cell" ,rust-once-cell-1)
+        ("rust-rustc-hash" ,rust-rustc-hash-1))))
+    (home-page "https://github.com/matklad/countme";)
+    (synopsis
+     "Counts the number of live instances of types")
+    (description
+     "This package provides a counts the number of live instances of types.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-cov-mark-2
   (package
     (name "rust-cov-mark")
@@ -17924,32 +17950,6 @@ in @code{no_std}.  Alloc support is optional.")
                        "check-cfg = ['cfg(coverage_nightly)'] }"
                        "\n" "\n" all)))))))))
 
-(define-public rust-countme-3
-  (package
-    (name "rust-countme")
-    (version "3.0.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "countme" version))
-       (file-name
-        (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32
-         "10z4r1xx77sr8axp3lsgc0azidazwgnhpzig2gcx5dfrdl66wx03"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-inputs
-       (("rust-dashmap" ,rust-dashmap-4)
-        ("rust-once-cell" ,rust-once-cell-1)
-        ("rust-rustc-hash" ,rust-rustc-hash-1))))
-    (home-page "https://github.com/matklad/countme";)
-    (synopsis
-     "Counts the number of live instances of types")
-    (description
-     "This package provides a counts the number of live instances of types.")
-    (license (list license:expat license:asl2.0))))
-
 (define-public rust-cpal-0.13
   (package
     (name "rust-cpal")

Reply via email to