gnu: Add rust-hexf-parse-0.2.

* gnu/packages/crates-io.scm (rust-hexf-parse-0.2): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Troy Figiel 2024-01-08 17:19:56 +01:00 committed by Efraim Flashner
parent 4010d57571
commit cd879dab82
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -31175,6 +31175,25 @@ (define-public rust-hex-literal-impl-0.1
`(#:cargo-inputs
(("rust-proc-macro-hack" ,rust-proc-macro-hack-0.4))))))
(define-public rust-hexf-parse-0.2
(package
(name "rust-hexf-parse")
(version "0.2.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "hexf-parse" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1pr3a3sk66ddxdyxdxac7q6qaqjcn28v0njy22ghdpfn78l8d9nz"))))
(build-system cargo-build-system)
(home-page "https://github.com/lifthrasiir/hexf")
(synopsis "Hexadecimal float support for Rust")
(description "This library provides parsing functionality for hexadecimal
float literals. Two functions @code{parse_hexf32} and @code{parse_hexf64} are
provided for each type.")
(license license:cc0)))
(define-public rust-hkdf-0.12
(package
(name "rust-hkdf")