me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/crates-io.scm (rust-lexical-parse-integer-0.8): New variable.
master
Nicolas Goaziou 2021-10-06 21:37:24 +02:00
parent 01d52c1876
commit 5a6d510d3e
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 23 additions and 0 deletions

View File

@ -25373,6 +25373,29 @@ sending emails from Rust applications.")
("rust-quickcheck" ,rust-quickcheck-0.8)
("rust-rustc-version" ,rust-rustc-version-0.2))))))
(define-public rust-lexical-parse-integer-0.8
(package
(name "rust-lexical-parse-integer")
(version "0.8.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "lexical-parse-integer" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1b2kxprq3636x3j1qy68202q7yzsmq5c7h9w7m7zrh4cvanjpjgj"))))
(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 parsing of integers from strings")
(description
"This crate provides efficient parsing of integers from strings.")
(license (list license:expat license:asl2.0))))
(define-public rust-lexical-util-0.8
(package
(name "rust-lexical-util")