gnu: Add rust-fast-float-0.2.

* gnu/packages/crates-io.scm (rust-fast-float-0.2): New variable.
This commit is contained in:
Nicolas Goaziou 2021-06-15 12:47:22 +02:00
parent b853f8674e
commit 3421a0a97c
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -15220,6 +15220,27 @@ (define-public rust-fancy-regex-0.3
supported in purely NFA-based implementations.")
(license license:expat)))
(define-public rust-fast-float-0.2
(package
(name "rust-fast-float")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "fast-float" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32 "0g7kfll3xyh99kc7r352lhljnwvgayxxa6saifb6725inikmyxlm"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/aldanor/fast-float-rust")
(synopsis "Fast floating-point number parser.")
(description
"This crate provides a fast decimal number parser from strings into
floats.")
(license (list license:expat license:asl2.0))))
(define-public rust-fastrand-1
(package
(name "rust-fastrand")