efraim pushed a commit to branch master
in repository guix.

commit 9b3ae3403b7c37bf2cdae5636502469a42ecb526
Author: Efraim Flashner <[email protected]>
AuthorDate: Tue Jan 21 08:47:37 2025 +0200

    gnu: rust-anyinput: Sort alphabetically.
    
    * gnu/packages/crates-io.scm (rust-anyinput-0.1, rust-anyinput-core-0.1,
    rust-anyinput-derive-0.1): Sort alphabetically.
    
    Change-Id: Ibfec060fe326b054f95d7fd2946fd583d508af1c
---
 gnu/packages/crates-io.scm | 98 +++++++++++++++++++++++-----------------------
 1 file changed, 49 insertions(+), 49 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index eb70599384..50db1a02e8 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -2139,6 +2139,55 @@ writing colored text to a terminal.")
 reductions on 32-bit ARM.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-anyhow-1
+  (package
+    (name "rust-anyhow")
+    (version "1.0.95")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "anyhow" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "010vd1ki8w84dzgx6c81sc8qm9n02fxic1gkpv52zp4nwrn0kb1l"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-backtrace" ,rust-backtrace-0.3))
+       #:cargo-development-inputs
+       (("rust-futures" ,rust-futures-0.3)
+        ("rust-rustversion" ,rust-rustversion-1)
+        ("rust-syn" ,rust-syn-2)
+        ("rust-thiserror" ,rust-thiserror-2)
+        ("rust-trybuild" ,rust-trybuild-1))))
+    (home-page "https://github.com/dtolnay/anyhow";)
+    (synopsis "Flexible concrete Error type")
+    (description "This package provides a flexible concrete Error type built on
+@code{std::error::Error}.")
+    (license (list license:expat license:asl2.0))))
+
+(define-public rust-anyinput-0.1
+  (package
+    (name "rust-anyinput")
+    (version "0.1.8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "anyinput" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "08dkks0pg097vcjj3a43fxzazs2cnmf1jd7kcj8s3y6lfxj80n12"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-anyinput-derive" ,rust-anyinput-derive-0.1))))
+    (home-page "https://github.com/CarlKCarlK/anyinput";)
+    (synopsis "Macro for functions that accept any input")
+    (description
+     "This package provides a macro for easier writing of functions that
+accept any string-, path-, iterator-, array-, or ndarray-like input.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-anyinput-core-0.1
   (package
     (name "rust-anyinput-core")
@@ -2188,55 +2237,6 @@ reductions on 32-bit ARM.")
      "This package provides an internal helper library of anyinput.")
     (license (list license:expat license:asl2.0))))
 
-(define-public rust-anyinput-0.1
-  (package
-    (name "rust-anyinput")
-    (version "0.1.8")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "anyinput" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "08dkks0pg097vcjj3a43fxzazs2cnmf1jd7kcj8s3y6lfxj80n12"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:skip-build? #t
-       #:cargo-inputs (("rust-anyinput-derive" ,rust-anyinput-derive-0.1))))
-    (home-page "https://github.com/CarlKCarlK/anyinput";)
-    (synopsis "Macro for functions that accept any input")
-    (description
-     "This package provides a macro for easier writing of functions that
-accept any string-, path-, iterator-, array-, or ndarray-like input.")
-    (license (list license:expat license:asl2.0))))
-
-(define-public rust-anyhow-1
-  (package
-    (name "rust-anyhow")
-    (version "1.0.95")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "anyhow" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "010vd1ki8w84dzgx6c81sc8qm9n02fxic1gkpv52zp4nwrn0kb1l"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-inputs
-       (("rust-backtrace" ,rust-backtrace-0.3))
-       #:cargo-development-inputs
-       (("rust-futures" ,rust-futures-0.3)
-        ("rust-rustversion" ,rust-rustversion-1)
-        ("rust-syn" ,rust-syn-2)
-        ("rust-thiserror" ,rust-thiserror-2)
-        ("rust-trybuild" ,rust-trybuild-1))))
-    (home-page "https://github.com/dtolnay/anyhow";)
-    (synopsis "Flexible concrete Error type")
-    (description "This package provides a flexible concrete Error type built on
-@code{std::error::Error}.")
-    (license (list license:expat license:asl2.0))))
-
 (define-public rust-apache-avro-0.16
   (package
     (name "rust-apache-avro")

Reply via email to