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

commit d90c6bfc222510f501c929fc3d4bacc94494448d
Author: Herman Rimm <[email protected]>
AuthorDate: Tue Dec 24 22:26:34 2024 +0100

    gnu: rust-valuable-0.1: Order alphabetically.
    
    * gnu/packages/crates-io.scm (rust-valuable-0.1): Order.
    
    Change-Id: I0ddbef0b9cb8f9060768a1b65f1151847ff3e268
    Signed-off-by: Efraim Flashner <[email protected]>
---
 gnu/packages/crates-io.scm | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 1dc356852d..cdad291b61 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -96125,51 +96125,51 @@ a part of rav1e.")
     (description "This package provides simd optimized HTML escaping code.")
     (license (list license:expat license:asl2.0))))
 
-(define-public rust-valuable-derive-0.1
+(define-public rust-valuable-0.1
   (package
-    (name "rust-valuable-derive")
+    (name "rust-valuable")
     (version "0.1.0")
     (source (origin
               (method url-fetch)
-              (uri (crate-uri "valuable-derive" version))
+              (uri (crate-uri "valuable" version))
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
                (base32
-                "0cjvqljzsj891cjzlwv0ihrv4m0n5211a6pr6b7cz42ich66ji4x"))))
+                "0v9gp3nkjbl30z0fd56d8mx7w1csk86wwjhfjhr400wh9mfpw2w3"))))
     (build-system cargo-build-system)
     (arguments
      `(#:skip-build? #t
        #:cargo-inputs
-       (("rust-proc-macro2" ,rust-proc-macro2-1)
-        ("rust-quote" ,rust-quote-1)
-        ("rust-syn" ,rust-syn-1))))
+       (("rust-valuable-derive" ,rust-valuable-derive-0.1))))
     (home-page "https://github.com/tokio-rs/valuable";)
-    (synopsis "Macros for the valuable crate")
-    (description "This package provides macros for the @code{valuable}
-crate.")
+    (synopsis "Object-safe value inspection")
+    (description
+     "This package implements object-safe value inspection, used to pass
+un-typed structured data across trait-object boundaries.")
     (license license:expat)))
 
-(define-public rust-valuable-0.1
+(define-public rust-valuable-derive-0.1
   (package
-    (name "rust-valuable")
+    (name "rust-valuable-derive")
     (version "0.1.0")
     (source (origin
               (method url-fetch)
-              (uri (crate-uri "valuable" version))
+              (uri (crate-uri "valuable-derive" version))
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
                (base32
-                "0v9gp3nkjbl30z0fd56d8mx7w1csk86wwjhfjhr400wh9mfpw2w3"))))
+                "0cjvqljzsj891cjzlwv0ihrv4m0n5211a6pr6b7cz42ich66ji4x"))))
     (build-system cargo-build-system)
     (arguments
      `(#:skip-build? #t
        #:cargo-inputs
-       (("rust-valuable-derive" ,rust-valuable-derive-0.1))))
+       (("rust-proc-macro2" ,rust-proc-macro2-1)
+        ("rust-quote" ,rust-quote-1)
+        ("rust-syn" ,rust-syn-1))))
     (home-page "https://github.com/tokio-rs/valuable";)
-    (synopsis "Object-safe value inspection")
-    (description
-     "This package implements object-safe value inspection, used to pass
-un-typed structured data across trait-object boundaries.")
+    (synopsis "Macros for the valuable crate")
+    (description "This package provides macros for the @code{valuable}
+crate.")
     (license license:expat)))
 
 (define-public rust-valuable-serde-0.1

Reply via email to