mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add rust-fast-float-0.2.
* gnu/packages/crates-io.scm (rust-fast-float-0.2): New variable.
This commit is contained in:
parent
b853f8674e
commit
3421a0a97c
1 changed files with 21 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue