[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70606] [PATCH rust-team 073/101] gnu: Place rust-fakeit-1 in alphab
From: |
Herman Rimm |
Subject: |
[bug#70606] [PATCH rust-team 073/101] gnu: Place rust-fakeit-1 in alphabetical order. |
Date: |
Sat, 27 Apr 2024 14:35:35 +0200 |
* gnu/packages/crates-io.scm (rust-fake-simd-0.1, rust-fakeit-1,
rust-fallible-collections-0.4): Move variables.
Change-Id: Ieed66efa1c0d8c7bf1acfeb0dc7e86e802315380
---
gnu/packages/crates-io.scm | 138 ++++++++++++++++++-------------------
1 file changed, 67 insertions(+), 71 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index fb1a0be53a..0142bf58bf 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -25269,77 +25269,6 @@ (define-public rust-faccess-0.2
(description "Simple file accessibility checks in rust.")
(license license:expat)))
-(define-public rust-fakeit-1
- (package
- (name "rust-fakeit")
- (version "1.2.0")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "fakeit" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "0zsz58zfawf3zk9ig3n7dbd382lgndjx0xxngwsymilcgipr0bfi"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs (("rust-libmath" ,rust-libmath-0.2)
- ("rust-rand" ,rust-rand-0.6)
- ("rust-simplerand" ,rust-simplerand-1)
- ("rust-uuid" ,rust-uuid-0.8))))
- (home-page "https://github.com/PumpkinSeed/fakeit")
- (synopsis "Fake data generator")
- (description "Fake data generator library with 130+ functions.")
- (license license:expat)))
-
-(define-public rust-fake-simd-0.1
- (package
- (name "rust-fake-simd")
- (version "0.1.2")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "fake-simd" version))
- (file-name
- (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "1vfylvk4va2ivqx85603lyqqp0zk52cgbs4n5nfbbbqx577qm2p8"))))
- (build-system cargo-build-system)
- (arguments `(#:skip-build? #t))
- (home-page "https://github.com/RustCrypto/utils")
- (synopsis "Crate for mimicking simd crate on stable Rust")
- (description
- "Crate for mimicking simd crate on stable Rust.")
- (license (list license:asl2.0 license:expat))))
-
-(define-public rust-fallible-collections-0.4
- (package
- (name "rust-fallible-collections")
- (version "0.4.6")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "fallible_collections" version))
- (file-name
- (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "0ma7lga3zqbpzrhl76raljc6y69f38mb6j5yhkk6ldkh531wqmrz"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs
- (("rust-hashbrown" ,rust-hashbrown-0.12))))
- (home-page "https://github.com/vcombey/fallible_collections")
- (synopsis "Fallible collections implementation in Rust")
- (description "This library extends the Rust standard collections to return
-a result when an allocation error occurs, ala
-@url{https://github.com/rust-lang/rfcs/blob/master/text/2116-alloc-me-maybe.md,RFC
-2116}. The API currently proposes a fallible interface for @code{Vec},
-@code{Box}, @code{Arc}, @code{Btree} and @code{Rc}, as well as a
-@code{TryClone} trait which is implemented for primitive Rust traits and a
-fallible format macro.")
- (license (list license:expat license:asl2.0))))
-
(define-public rust-failure-0.1
(package
(name "rust-failure")
@@ -25393,6 +25322,73 @@ (define-public rust-failure-derive-0.1
(description "Derives for the failure crate.")
(license (list license:asl2.0 license:expat))))
+(define-public rust-fake-simd-0.1
+ (package
+ (name "rust-fake-simd")
+ (version "0.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "fake-simd" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1vfylvk4va2ivqx85603lyqqp0zk52cgbs4n5nfbbbqx577qm2p8"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t))
+ (home-page "https://github.com/RustCrypto/utils")
+ (synopsis "Crate for mimicking simd crate on stable Rust")
+ (description "Crate for mimicking simd crate on stable Rust.")
+ (license (list license:asl2.0 license:expat))))
+
+(define-public rust-fakeit-1
+ (package
+ (name "rust-fakeit")
+ (version "1.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "fakeit" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0zsz58zfawf3zk9ig3n7dbd382lgndjx0xxngwsymilcgipr0bfi"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-libmath" ,rust-libmath-0.2)
+ ("rust-rand" ,rust-rand-0.6)
+ ("rust-simplerand" ,rust-simplerand-1)
+ ("rust-uuid" ,rust-uuid-0.8))))
+ (home-page "https://github.com/PumpkinSeed/fakeit")
+ (synopsis "Fake data generator")
+ (description "Fake data generator library with 130+ functions.")
+ (license license:expat)))
+
+(define-public rust-fallible-collections-0.4
+ (package
+ (name "rust-fallible-collections")
+ (version "0.4.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "fallible_collections" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0ma7lga3zqbpzrhl76raljc6y69f38mb6j5yhkk6ldkh531wqmrz"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-hashbrown" ,rust-hashbrown-0.12))))
+ (home-page "https://github.com/vcombey/fallible_collections")
+ (synopsis "Fallible collections implementation in Rust")
+ (description
+ "This library extends the Rust standard collections to return
+a result when an allocation error occurs, ala
+@url{https://github.com/rust-lang/rfcs/blob/master/text/2116-alloc-me-maybe.md,RFC
+2116}. The API currently proposes a fallible interface for @code{Vec},
+@code{Box}, @code{Arc}, @code{Btree} and @code{Rc}, as well as a
+@code{TryClone} trait which is implemented for primitive Rust traits and a
+fallible format macro.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-fallible-iterator-0.3
(package
(name "rust-fallible-iterator")
--
2.41.0
- [bug#70606] [PATCH rust-team 054/101] gnu: Place rust-libz-sys-1 in alphabetical order., (continued)
- [bug#70606] [PATCH rust-team 054/101] gnu: Place rust-libz-sys-1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 052/101] gnu: Place rust-local-ip-address-0.4 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 057/101] gnu: Place rust-language-tags-0.3 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 076/101] gnu: Place rust-dyn-clone-1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 069/101] gnu: Place rust-home-0.5 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 099/101] gnu: Place rust-argh-shared-0.1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 079/101] gnu: Place rust-csv-index-0.1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 081/101] gnu: Place rust-cov-mark-2 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 085/101] gnu: Place rust-clap-cargo-0.12 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 050/101] gnu: Place rust-markup-proc-macro-0.13 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 073/101] gnu: Place rust-fakeit-1 in alphabetical order.,
Herman Rimm <=
- [bug#70606] [PATCH rust-team 082/101] gnu: Place rust-core-arch-0.1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 078/101] gnu: Place rust-dhcp4r-0.2 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 028/101] gnu: Place rust-pyo3-* packages in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 040/101] gnu: Place rust-notify-debouncer-mini-0.4 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 042/101] gnu: Place rust-nom8-0.2 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 043/101] gnu: Place rust-nispor-1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 048/101] gnu: Place rust-matrixcompare-core-0.1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 051/101] gnu: Place rust-magma-0.8 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 065/101] gnu: Place rust-hyphenation-commons-0.8 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 062/101] gnu: Place rust-iri-string-0.7 in alphabetical order., Herman Rimm, 2024/04/27