summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-02-08 10:26:45 +0200
committerEfraim Flashner <efraim@flashner.co.il>2024-02-20 13:58:42 +0200
commit27ddd4c52128e077fa95d799ade3f1f48d298f4f (patch)
tree68a00d8f38cac4496a8d44bed60230efe70542c4
parentcdc11bd54995e80148e6b381a7d23b6e2161d094 (diff)
gnu: rust-nom-7: Update to 7.1.3.
* gnu/packages/crates-io.scm (rust-nom-7): Update to 7.1.3. Change-Id: I3f2cd56ce82d9929e7a063b561bf482a49a9eb95
-rw-r--r--gnu/packages/crates-io.scm14
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 3dc4c8fbfa..cccb4e3434 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -39580,16 +39580,14 @@ implementation (which is unstable / requires nightly).")
(define-public rust-nom-7
(package
(name "rust-nom")
- (version "7.1.2")
+ (version "7.1.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "nom" version))
- (file-name
- (string-append name "-" version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
(sha256
- (base32
- "132lkkqd8hcbmpb90hncwknr7rn6knfq7774d679k74iqilpfl75"))))
+ (base32 "0jha9901wxam390jcf5pfa0qqfrgh8li787jx2ip0yk5b8y9hwyj"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Tests require example directory, not included in tarball.
@@ -39600,10 +39598,8 @@ implementation (which is unstable / requires nightly).")
(("rust-doc-comment" ,rust-doc-comment-0.3)
("rust-proptest" ,rust-proptest-1))))
(home-page "https://github.com/Geal/nom")
- (synopsis
- "Byte-oriented, zero-copy, parser combinators library")
- (description
- "This package provides a byte-oriented, zero-copy, parser
+ (synopsis "Byte-oriented, zero-copy, parser combinators library")
+ (description "This package provides a byte-oriented, zero-copy, parser
combinators library.")
(license license:expat)))