gnu: Add rust-lexical-write-integer-0.8.

* gnu/packages/crates-io.scm (rust-lexical-write-integer-0.8): New variable.
This commit is contained in:
Nicolas Goaziou 2021-10-06 21:38:01 +02:00
parent 5a6d510d3e
commit e18404703b
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -25417,6 +25417,29 @@ (define-public rust-lexical-util-0.8
(description "This package provides shared utilities for lexical crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-lexical-write-integer-0.8
(package
(name "rust-lexical-write-integer")
(version "0.8.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "lexical-write-integer" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1vsn3zg2hyqnyapwmzb2aw0w5f53ad6s6n46xyazsh0f5r4mdsgc"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-lexical-util" ,rust-lexical-util-0.8)
("rust-static-assertions" ,rust-static-assertions-1))))
(home-page "https://github.com/Alexhuszagh/rust-lexical")
(synopsis "Efficient formatting of integers to strings")
(description
"This crate provides efficient formatting of integers to strings.")
(license (list license:expat license:asl2.0))))
(define-public rust-lexical-5
(package
(name "rust-lexical")