From ea0beb7b1c7886d2d4ff8fd3e51711897b151b80 Mon Sep 17 00:00:00 2001 From: Herman Rimm Date: Tue, 24 Dec 2024 16:32:31 +0100 Subject: [PATCH] gnu: rust-countme-3: Order alphabetically. * gnu/packages/crates-io.scm (rust-countme-3): Order. Change-Id: I30445938626d84a4a85c2aa0148b27275641ad34 Signed-off-by: Efraim Flashner --- 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 6c648265d2..deee0ff804 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -17861,6 +17861,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") @@ -17946,32 +17972,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")