gnu: Add rust-xmlparser-0.13.

* gnu/packages/crates-io.scm (rust-xmlparser-0.13): New variable.
This commit is contained in:
Nicolas Goaziou 2021-02-10 15:01:30 +01:00
parent 179f773a82
commit 1aac080816
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -46021,6 +46021,26 @@ (define-public rust-xml5ever-0.16
"Push based streaming parser for xml.")
(license (list license:expat license:asl2.0))))
(define-public rust-xmlparser-0.13
(package
(name "rust-xmlparser")
(version "0.13.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "xmlparser" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1n73ymdxpdq30fgz698095zvh8k5r264rl6pcxnyyrr19nra4jqi"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/RazrFalcon/xmlparser")
(synopsis "Pull-based, zero-allocation XML parser")
(description
"@code{xmlparser} is a low-level, pull-based, zero-allocation XML 1.0
parser.")
(license (list license:expat license:asl2.0))))
(define-public rust-xz2-0.1
(package
(name "rust-xz2")