gnu: Add rust-ieee754-0.2.

* gnu/packages/crates-io.scm (rust-ieee754-0.2): New variable.
This commit is contained in:
Ricardo Wurmus 2022-09-21 12:10:44 +02:00
parent 8b5e1ed0df
commit fe8de9c700
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -28967,6 +28967,27 @@ (define-public rust-idna-0.1
(("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
("rust-rustc-test" ,rust-rustc-test-0.3))))))
(define-public rust-ieee754-0.2
(package
(name "rust-ieee754")
(version "0.2.6")
(source (origin
(method url-fetch)
(uri (crate-uri "ieee754" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1771d2kvw1wga65yrg9m7maky0fzsaq9hvhkv91n6gmxmjfdl1wh"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
(("rust-criterion" ,rust-criterion-0.2))))
(home-page "https://github.com/huonw/ieee754")
(synopsis "Low-level manipulations of IEEE754 floating-point numbers")
(description "This is a package for low-level manipulations of IEEE754
floating-point numbers.")
(license (list license:expat license:asl2.0))))
(define-public rust-if-chain-1
(package
(name "rust-if-chain")