efraim pushed a commit to branch rust-team
in repository guix.
commit 86e1d9c0c9dec2f3bfc1fd8c4d02c9ebe1c2656a
Author: Herman Rimm <[email protected]>
AuthorDate: Tue Dec 24 16:32:46 2024 +0100
gnu: rust-etherparse-0.13: Order alphabetically.
* gnu/packages/crates-io.scm (rust-etherparse-0.13): Order.
Change-Id: I3394c6ee8fe3a3452b232ad5a47e98f57932b88c
Signed-off-by: Efraim Flashner <[email protected]>
---
gnu/packages/crates-io.scm | 46 +++++++++++++++++++++++-----------------------
1 file changed, 23 insertions(+), 23 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index c1907a8551..f5644b1c35 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -26756,6 +26756,29 @@ libraries generally do not give you a choice in terms
of which standards/convent
they follow. Etcetera, on the other hand, gives you the choice.")
(license (list license:expat license:asl2.0))))
+(define-public rust-etherparse-0.13
+ (package
+ (name "rust-etherparse")
+ (version "0.13.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "etherparse" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "146rcbnhlpcbl6c6csfhvz0227wbiwhk13md6acq8211b7m94wl2"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-arrayvec" ,rust-arrayvec-0.7))
+ #:cargo-development-inputs (("rust-assert-matches"
,rust-assert-matches-1)
+ ("rust-proptest" ,rust-proptest-1))))
+ (home-page "https://github.com/JulianSchmid/etherparse")
+ (synopsis "Library for parsing & writing a bunch of packet based
protocols")
+ (description
+ "This package provides a library for parsing & writing a bunch of packet
+based protocols (@code{EthernetII}, IPv4, IPv6, UDP, TCP ...).")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-ethnum-1
(package
(name "rust-ethnum")
@@ -70904,29 +70927,6 @@ the file-system during development.")
(arguments
`(#:cargo-inputs (("rust-walkdir" ,rust-walkdir-2))))))
-(define-public rust-etherparse-0.13
- (package
- (name "rust-etherparse")
- (version "0.13.0")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "etherparse" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "146rcbnhlpcbl6c6csfhvz0227wbiwhk13md6acq8211b7m94wl2"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs (("rust-arrayvec" ,rust-arrayvec-0.7))
- #:cargo-development-inputs (("rust-assert-matches"
,rust-assert-matches-1)
- ("rust-proptest" ,rust-proptest-1))))
- (home-page "https://github.com/JulianSchmid/etherparse")
- (synopsis "Library for parsing & writing a bunch of packet based
protocols")
- (description
- "This package provides a library for parsing & writing a bunch of packet
-based protocols (@code{EthernetII}, IPv4, IPv6, UDP, TCP ...).")
- (license (list license:expat license:asl2.0))))
-
(define-public rust-etherparse-0.9
(package
(inherit rust-etherparse-0.13)